Skip to content

Instantly share code, notes, and snippets.

@WhoSayIn
Created April 6, 2011 17:31
Show Gist options
  • Save WhoSayIn/906098 to your computer and use it in GitHub Desktop.
Save WhoSayIn/906098 to your computer and use it in GitHub Desktop.
public static void main(String[] args) throws CloneNotSupportedException{
Car c1 = new Car("Ferrari");
Car c2 = (Car) c1.clone();
System.out.println(c2.name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment