top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is object cloning in java?

0 votes
381 views
What is object cloning in java?
posted May 18, 2018 by Frank Lee

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

clone() is a method in the Java programming language for object duplication. In java, objects are manipulated through reference variables, and there is no operator for copying an object—the assignment operator duplicates the reference, not the object. The clone() method provides this missing functionality.

answer May 20, 2018 by Chahat Sharma
...