如何克服 c++ 中的对象切片问题
我应该如何摆脱 C++ 中对象切片的问题。
在我的应用程序中,如果派生类具有一些动态分配的指针,并且派生类对象被分配给基类对象,则行为是内存损坏!
How should I get rid of the problem with object slicing in c++.
In my application if the derived class
has some dynamically allocated pointer and derived class
object is assigned to base class
object, the behavior is memory corruption!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于你的设计。您可能必须更改某些设计标准才能摆脱它。其中一种选择是在特定派生
类
的基类
中具有重载的operator =
和复制构造函数。现在,如果您尝试执行以下操作:
它将导致编译器错误。
It depends on your design. You may have to change certain design criteria to get rid of it. One of the options is to have an overloaded
operator =
and copy constructor in your baseclass
for particular derivedclass
.Now if you attempt to do something like following:
it will result in compiler error.
你不能。你应该用指针解决问题。如果要将 Obj2 分配给 Obj1,请覆盖分配运算符 (operator=)
you can't. you should solve the problem with the pointer. if you want to assign Obj2 to Obj1, override assign operator (operator=)