Click here to watch in Youtube :
https://www.youtube.com/watch?v=Ss_O-2CvJZ4&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
Java Tutorial : Java Interface (Evolving Interfaces using extends) |
Java Tutorial : Java Interface (Evolving Interfaces using extends) |
Java Tutorial : Java Interface (Evolving Interfaces using extends) |
Java Tutorial : Java Interface (Evolving Interfaces using extends) |
public interface DoIt { void sayHi(); }
public interface DoItPlus extends DoIt { void sayBye(); }
public class MyClass implements DoItPlus { @Override public void sayHi() { System.out.println("Hi"); } @Override public void sayBye() { System.out.println("Bye"); } }
public class InterfaceTest { public static void main(String[] args) { DoItPlus doItPlusRef = new MyClass(); doItPlusRef.sayHi(); doItPlusRef.sayBye(); } }
Hi Bye
https://sites.google.com/site/javaee4321/java/InterfaceDemo-EvolvingInterfaces-extends-App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/InterfaceDemo-EvolvingInterfaces-extends-App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/fa67e02bcd9efeae1c2ea3019677c5252e4db5f7/BasicJava/InterfaceDemo-EvolvingInterfaces-extends-App/?at=master
See also:
No comments:
Post a Comment