Object[] 如何可克隆
Object[] o = new Object[]{};
System.out.println(o instanceof Cloneable);
这给出了 true 作为 o/p。我不明白为什么?
Object[] o = new Object[]{};
System.out.println(o instanceof Cloneable);
This gives true as o/p. I could not understand why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Java 中的所有数组都是可克隆和可序列化的。
数组上的克隆仅复制数组(浅复制,而不克隆内容)。
All arrays in Java are Cloneable and Serializable.
A clone on an array just copies the array (shallow copy, not cloning the contents).
基本上,数组支持(浅)克隆。
来自 JLS 的第 10.7 节:
和
Arrays support (shallow) cloning, basically.
From section 10.7 of the JLS:
and