-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathMethodOverloading1.java
46 lines (43 loc) · 1.05 KB
/
MethodOverloading1.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
class Overload
{
void test()
{
System.out.println("No parameter");
}
void test(int a)
{
System.out.println("a="+a);
}
void test (int a,int b)
{
System.out.println("a="+a);
System.out.println("b=" + b);
}
double test(double a)
{
return a*a;
}
void test(byte b)
{
System.out.println("byte b="+b);
}
void test(String s)
{
System.out.println("String:"+s);
}
}
class MethodOverloading1 {
public static void main(String[] args) {
byte a =8;
Overload obj=new Overload();
obj.test(a);//goes to method with byte argument
obj.test(250);//int
System.out.println("Square of double a:"+obj.test(7.5));//double
obj.test("Hello");//String
obj.test('A');// Since char is
// not available, so the datatype
// higher than char in terms of
// range is int.
System.out.println("Square of float a:" + obj.test(5f));// double
}
}