Wednesday 20 January 2016

Java Tutorial : Java method overriding(default method conflict)


Click here to watch in Youtube :
https://www.youtube.com/watch?v=4gz1TysPCVs&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial : Java method overriding(default method conflict) 
Java Tutorial : Java method overriding(default method conflict) 
InterfaceA.java
public interface InterfaceA
{
    default public void sayWelcome()
    {
        System.out.println("Welcome by InterfaceA");
    }
}
InterfaceB.java
public interface InterfaceB
{
    default public void sayWelcome()
    {
        System.out.println("Welcome by InterfaceB");
    }
}
MyClass.java
public class MyClass implements InterfaceA, InterfaceB
{
    public void sayWelcome()
    {
        System.out.println("Welcome by MyClass");
    }
}
MethodOverrideTest.java
public class MethodOverrideTest
{
    public static void main(String[] args)
    {
        MyClass myClassObj = new MyClass();
        myClassObj.sayWelcome();
    }

}
Output
Welcome by MyClass
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/MethodOverridingDemo-defaultmethod-conflict-App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/MethodOverridingDemo-defaultmethod-conflict-App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/fa67e02bcd9efeae1c2ea3019677c5252e4db5f7/BasicJava/MethodOverridingDemo-defaultmethod-conflict-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