package com.sudhirtheindian2.java123;
import java.lang.constant.Constable;
public class CopyConstructor {
int a;
String name;
CopyConstructor(){
a=40;
name="indian";
System.out.println(a+" "+name);
}
CopyConstructor(CopyConstructor reference){
a= reference.a;
name=reference.name;
System.out.println(a+" "+name);
}
public static void main(String[] args) {
CopyConstructor c = new CopyConstructor();
CopyConstructor c2 = new CopyConstructor(c);
// What is copy constructor in java ?
// whenever we pass object reference to the constructor
// then it is called copy constructor
}
}
Computer Storage Units Converter Computer Storage Units Converter From: Bytes Kilobytes Megabytes Gigabytes Terabytes Value: To: Bytes Kilobytes Megabytes Gigabytes Terabytes Convert
टिप्पणियाँ
एक टिप्पणी भेजें