-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathConstructorOverloading.java
54 lines (48 loc) · 1.23 KB
/
ConstructorOverloading.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
47
48
49
50
51
52
53
54
class person
{
int age;
double height;
double weight;
person()
{
System.out.println("No parameterized constructor");
age=0;
height=0.0;
weight=0.0;
}
person(int age)
{
System.out.println("One Parameter Constructor");
this.age=age;
height=0.0;
weight=0.0;
}
person(int age,double height)
{
System.out.println("Two parameter Constructor");
this.age=age;
this.height=height;
weight=0.0;
}
person(int age, double height,double weight) {
System.out.println("Three parameter Constructor");
this.age = age;
this.height = height;
this.weight = weight;
}
public String toString(){
return "Age:"+age+"\tHeight"+height+"\tWeight"+weight;
}
}
public class ConstructorOverloading {
public static void main(String[] args) {
person p1=new person();
System.out.println(p1);
person p2=new person(22);
System.out.println(p2);
person p3=new person(22,5);
System.out.println(p3);
person p4=new person(22,5,65);
System.out.println(p4);
}
}