当我打开Object class
源代码时,我可以看到其中的clone()
方法。
当我尝试查看clone()
方法列表中的方法时没有显示(如果我创建object
asMyClass
并myClass
应用. dot operator
它会给我 Eclipse IDE 中所有可用方法的建议,但它没有clone()
在该列表中显示方法!!)
MyClass myClass = new MyClass();
myClass. // here I expect to see clone() as well but not
为什么会发生????