Java / Concurrent collections
What is defensive copying in Java?
Defensive copying is a technique where an identical, but the copy of an object is returned instead of the original object by performing deep copy. Thus any modification to the returned object will not affect the original object.
More Related questions...