Created
April 6, 2011 17:31
-
-
Save WhoSayIn/906098 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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