Sep 29 2010 10:39 AM 3152 4 Create Object Using Clone pragya03 Give an example of using clone to create an object. muralidhar.9e Profile Answers by muralidhar.9e Questions by muralidhar.9e Oct 11th, 2010 We can create an object by using clone() method which is a object class method.Create an object like MyClass obj=new MyClass();CloneClass cloneobj=(CloneClass)obj.clone();By this way you can create a ... horunkoya Profile Answers by horunkoya Questions by horunkoya Oct 9th, 2010 Object copying Answer Question Select Best Answer
Sep 29 2010 10:39 AM 3152 4 Create Object Using Clone pragya03 Give an example of using clone to create an object. muralidhar.9e Profile Answers by muralidhar.9e Questions by muralidhar.9e Oct 11th, 2010 We can create an object by using clone() method which is a object class method.Create an object like MyClass obj=new MyClass();CloneClass cloneobj=(CloneClass)obj.clone();By this way you can create a ... horunkoya Profile Answers by horunkoya Questions by horunkoya Oct 9th, 2010 Object copying Answer Question Select Best Answer
muralidhar.9e Profile Answers by muralidhar.9e Questions by muralidhar.9e Oct 11th, 2010 We can create an object by using clone() method which is a object class method.Create an object like MyClass obj=new MyClass();CloneClass cloneobj=(CloneClass)obj.clone();By this way you can create a ...