Object的clone()方法
[code]class A implements Cloneable {
// 重写Object的clone
public Object clone() throws CloneNotSupportedException {
return (A) super.clone();
}
public String toString() {
return "Hello,World!";
}
}
class B {
public static void main(String[] args) throws CloneNotSupportedException {
A x = new A();
Object y = (A)x.clone();
System.out.println(y.toString());
}
}[/code]
wave
2009年6月25日 17:36
[emot]shock[/emot]<>