什么是“浅拷贝”?一个物体的
可能的重复:
深拷贝和深拷贝有什么区别和浅拷贝?
我今天在这里看到了这个:http://msdn.microsoft.com/en-us/library/system.web.routing.route.aspx 其中一个成员函数是:
“MemberwiseClone - 创建当前对象的浅表副本。(继承自 Object。)”
那么什么是“浅拷贝”和“深拷贝”?
Possible Duplicate:
What is the difference between a deep copy and a shallow copy?
I saw this today here: http://msdn.microsoft.com/en-us/library/system.web.routing.route.aspx
and one of the member functions was:
"MemberwiseClone - Creates a shallow copy of the current Object. (Inherited from Object.)"
So whats a "shallow copy" verse a ... "Deep copy"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
浅拷贝仅替换对象当前级别的属性,这意味着如果您有一个对象作为属性,它将具有与原始对象相同的引用。当然,如果您的属性是值类型或基元,那么这不是问题。
Shallow copy only replaces the properties on the current level of the object, that means if you have an object as a property it will have the same reference as your original. This is not a problem if your properties are value types or primitives of course.