in Education by
What do you understand by copy constructor in Java?

1 Answer

0 votes
by
What do you understand by copy constructor in Java? There is no copy constructor in java. However, we can copy the values from one object to another like copy constructor in C++. There are many ways to copy the values of one object into another in java. They are: By constructor By assigning the values of one object into another By clone() method of Object class In this example, we are going to copy the values of one object into another using java constructor. //Java program to initialize the values from one object to another class Student6{ int id; String name; //constructor to initialize integer and string Student6(int i,String n){ id = i; name = n; } //constructor to initialize another object Student6(Student6 s){ id = s.id; name =s.name; } void display(){System.out.println(id+" "+name);} public static void main(String args[]){ Student6 s1 = new Student6(111,"Karan"); Student6 s2 = new Student6(s1); s1.display(); s2.display(); } } Test it Now Output: 111 Karan 111 Karan

Related questions

0 votes
    Can you make a constructor final?...
asked Nov 19, 2020 in Education by Editorial Staff
0 votes
    Is constructor inherited?...
asked Nov 19, 2020 in Education by Editorial Staff
0 votes
    Does constructor return any value?...
asked Nov 17, 2020 in Education by Editorial Staff
0 votes
    What is the constructor?...
asked Nov 17, 2020 in Education by Editorial Staff
0 votes
    What are the differences between the constructors and methods?...
asked Nov 19, 2020 in Education by Editorial Staff
0 votes
    Can we overload the constructors?...
asked Nov 19, 2020 in Education by Editorial Staff
0 votes
    What do you understand by fail-fast in JAVA?...
asked May 27, 2021 in Technology by JackTerrance
0 votes
    I believe I came across this a couple months ago, but now I'm having trouble finding the answer. ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 12, 2022 in Education by JackTerrance
0 votes
    What is Copy Constructor in C#?...
asked Jan 1, 2021 in Technology by JackTerrance
0 votes
    What do you understand by the system ‘One Vote One Value’? Please answer the above question....
asked Aug 14, 2022 in Education by JackTerrance
0 votes
    What do you understand by activation of adsorption : : How is it achieved. Select the correct answer from above options...
asked Jan 4, 2022 in Education by JackTerrance
0 votes
    What do you understand by activation of adsorption : How is it achieved. Select the correct answer from above options...
asked Jan 3, 2022 in Education by JackTerrance
0 votes
    Clearly state, what do you understand by the terms : : mass number, nucleaons and nuclides? Select the correct answer from above options...
asked Jan 2, 2022 in Education by JackTerrance
0 votes
    What do you understand by tracers ? Give an example of a tracer that can be used in determining the mechanism of a chemical reaction. Select the correct answer from above options...
asked Jan 2, 2022 in Education by JackTerrance
0 votes
    What do you understand by text-transform property? Write about it. Select the correct answer from above options...
asked Dec 31, 2021 in Education by JackTerrance
...