Tuesday, December 30, 2014

Java Tutorial For Beginners 20 - Method Overloading in Java

8:48 AM











1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package lesson1;
public class MyClass {

public static void main(String[] args) {
System.out.println(Add(1,36));
System.out.println(Add(5.656,40.66));
System.out.println(Add("hello"," world"));
}

public static int Add (int a ,int b){
return (a+b);
}

public static double Add (double a ,double b){
return (a+b);
}

public static String Add (String a ,String b){
return (a+b);
}
}








Searches related to Classes and Objects in java

classes and objects in java pdf

classes and objects in java ppt

classes and objects in c++

classes in java

classes and objects in java with realtime examples

methods in java

encapsulation in java

define class in java


Written by

We are one of the initiators of the development of information technology in understanding the need for a solution that is familiar and close to us.

0 comments:

Post a Comment

 

© 2013 Klick Dev. All rights resevered.

Back To Top