Thursday 21 January 2016

Java Tutorial : Java method overloading vs method overriding(version3)


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

Click the below Image to Enlarge
Java Tutorial : Java method overloading vs method overriding(version3) 
Java Tutorial : Java method overloading vs method overriding(version3) 
Java Tutorial : Java method overloading vs method overriding(version3) 
MethodOverloadingExample.java
public class MethodOverloadingExample
{

    public void add(int a, int b)
    {
        int total = a + b;
        System.out.println("total : " + total);
    }

    public void add(int a, int b, long c)
    {
        long total = a + b + c;
        System.out.println("total : " + total);
    }
    
    public static void main(String args[])
    {
        MethodOverloadingExample methodOverloadingExample= new MethodOverloadingExample();
        
        //Call two parameter add method
        methodOverloadingExample.add(2,2);
        //Call three parameter add method
        methodOverloadingExample.add(5, 5, 5L);     
    }

}
Output
total : 4
total : 15

MethodOverridingExample.java
class Animal
{
    public void eat()
    {
        System.out.println("Animal is eating...");
    }
}

class Lion extends Animal
{
    public void eat()
    {
        System.out.println("Lion is Eating meat...");
    }
}

public class MethodOverridingExample
{
    public static void main(String args[])
    {
        Animal animalRef = new Lion();
        animalRef.eat();
    }
}
Output
Lion is Eating meat...
Click the below link to download the code:
https://sites.google.com/site/javaee4321/java/MethodOverridingDemo_version3-App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/MethodOverridingDemo_version3-App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/3e2ee868b5bb412f4204eb203d570780ab776c33/BasicJava/MethodOverridingDemo_version3-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