public deepcopyTest() { deepcopyTest renew = new deepcopyTest(); renew.a = a; renew.b = b; }
public deepcopyTest(deepcopyTest deepcopy) { this.a = deepcopy.a; this.b = deepcopy.b; }