Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~99 People Reached
Favorite Forums
Favorite Tags
java x 1
Member Avatar for jawaharl0207

Hi friedns, //Demonstrate the clone method [code=Java]class TestClone// implements Cloneable { int a; double b; TestClone cloneTest(){ try{return (TestClone)super.clone();}catch(CloneNotSupportedException e){System.out.println("cloning not allowed");return this;} } }[/code] [code=Java]class CloneDemo1 { public static void main(String[] args) { TestClone x1=new TestClone(); TestClone x2; x1.a=10; x1.b=20.98; x2=x1; //x2=x1.cloneTest();//clone x1 //System.out.println(x2==x1); // System.out.println(x2.equals(x1)); System.out.println(x1.a+" "+x1.b); System.out.println(x2.a+" …

Member Avatar for Jocamps
0
99