本帖最后由 anqi 于 2014-4-20 17:30 编辑
Api文档上说
如果此对象的类不能实现接口 Cloneable,则会抛出 CloneNotSupportedException。注意,所有的数组都被视为实现接口 Cloneable。
- public class ObjectTest implements Cloneable{ //实现接口就行了
- public static void main(String[] args) throws Exception
- {
- ObjectTest man=new ObjectTest();
-
- Object man2=man.clone();
- System.out.println(man2.toString());
- }
- }
复制代码
|