Narayana
Answered On : Jul 6th, 2012
Cloning is the process of creating a copy of the server and the main server will send the request to appropriate server that has been linked with main server.
Login to rate this answer.
In Java, Cloning is kind of logic to create a copy of the class by implementing Clonable interface.
Login to rate this answer.
surendar
Answered On : Jul 16th, 2012
Cloning is the process of creating duplicate copy with current object state.
We use this concept in real world like, eg: In Bike manufacturing company, we use cloning for creating same bike object,
after that we change just Bikes engine number so that another bike object is created with current object.
For this we have clone() method int Object class.
We have 2 types of cloning.
1) Partial cloning
2) Deep cloning
Login to rate this answer.