Duplating Objects

Mutability

Mutable

Mutable: liable to change.

Immutable

Immutable: unchanging over time or unable to be changed.

Cloning and Copying

Goals of Cloning

  1. x.clone() != x
  2. x.clone().getClass() == x.getClass()
  3. x.clone().equals(x)

Clone() Method & Cloneable Interface

Copy Constructors