-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopy_constructor.java
More file actions
52 lines (38 loc) · 1.26 KB
/
copy_constructor.java
File metadata and controls
52 lines (38 loc) · 1.26 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
import java.util.*;
public class copy_constructor {
static class student{
String name;
int roll_no;
int password;
//this array is pass to every constructor
int marks[];
student(){//constructor
marks=new int[3];
this.name=name;
}
//copy constructor
student(student s1){//here we are copying data of s1 in s2
marks=new int [3];
this.name=s1.name;
this.roll_no=s1.roll_no;
this.password=s1.password;
this.marks=s1.marks;
}
}
public static void main(String[] args){
student s1=new student();
s1.name="manshika";
s1.roll_no=23;
s1.password=123;
s1.marks[0]=5;
s1.marks[1]=10;
s1.marks[2]=15;
student s2=new student(s1);//as we are creating new constructor , we are coping the data of s1 to s2
s2.password=34;
s1.marks[2]=3;//as we already copied the data still marks get affect because in array only reference is change while copying
for(int i=0;i<3;i++){
System.out.println(s2.marks[i]);
}
System.out.println(s2.password);
}
}