Click here to watch in Youtube :
https://www.youtube.com/watch?v=VlXxXOyeLBY&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
Java Tutorial : Interface extends Interface |
public interface InterfaceA { void sayHi(); }
public interface InterfaceB extends InterfaceA { void sayBye(); }
public class MyClass implements InterfaceB { @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) { InterfaceB interfaceBRef = new MyClass(); interfaceBRef.sayHi(); interfaceBRef.sayBye(); } }
Hi.. Bye..
https://sites.google.com/site/javaee4321/java/InterfaceDemo-I-extends-I-App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/InterfaceDemo-I-extends-I-App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/b2f5bc83a6afc94a18aa8491d69c8866cf710cff/BasicJava/InterfaceDemo-I-extends-I-App/?at=master
See also:
No comments:
Post a Comment