Thursday 14 January 2016

Java Tutorial : Java Interface (Evolving Interfaces)


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) 
DoIt.java
public interface DoIt
{
    void sayHi();
    
    default void sayBye()
    {
        System.out.println("bye...");
    }
}
MyClass.java
public class MyClass implements DoIt
{

    @Override
    public void sayHi()
    {
        System.out.println("Hi..");
    }

}
InterfaceTest.java
public class InterfaceTest
{

    public static void main(String[] args)
    {
        DoIt doItRef = new MyClass();
        doItRef.sayHi();
        doItRef.sayBye();
    }

}
Output
Hi..
bye...
Click the below link to download the code:
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:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • No comments:

    Post a Comment