¿¹Á¦

public class ClassA implements Cloneable {{
public Object clone throws CloneNotSupportedException () {
//...
}
}


¼Ö·ç¼Ç
º¹Á¦ ¸Þ¼Òµå´Â Ç×»ó final·Î ¼±¾ðÇϽʽÿÀ.

public class ClassA implements Cloneable {{
public final Object clone throws CloneNotSupportedException () {
//...
}
}