-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDriverClass.java
More file actions
89 lines (69 loc) · 1.66 KB
/
Copy pathDriverClass.java
File metadata and controls
89 lines (69 loc) · 1.66 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
package inheritance;
class Parent {
int i;
int j;
static final int val=500;
public Parent(){
//System.out.println("Parent class default constructor !");
i=j=0;
}
public Parent(int x,int y){
this.i=x;
this.j=y;
System.out.println("Parent-Parameterised constructor ...");
}
public void printValues(){
System.out.print(i+":"+j);
}
public void printData(){
System.out.println(this.hashCode()+": Print Date method of parent Class ");
}
}
class Child {
int k;
public Child(){
//System.out.println("Child class default constructor !");
}
public Child(int x,int y,int z){
// super(x,y);
// this.k=z;
}
public void printValues(){
//System.out.println(this.i+":"+this.j+":"+k+":"+val);
//super.printValues();
System.out.print(k);
}
}
class GarentChild extends Child{
GarentChild(){
//System.out.println("GarentChild class constrcutor ");
}
public void display(){
this.printData();
}
}
class Sample {
}
public class DriverClass{
public static void main(String[] args) {
*/
/* Child childobj=new Child();*//*
*/
/*
Child child=new Child(10,20,30);
child.printValues();
*//*
*/
/* GarentChild garentChild=new GarentChild();*//*
//System.out.println(garentChild.i+":"+garentChild.j+":"+garentChild.k+":"+garentChild.val);
//garentChild.printValues();
*/
/* garentChild.printData();
new Child().printData();
new Parent().printData();
new Sample().printData();
*//*
}
}
*/