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