如何克服 c++ 中的对象切片问题

发布于 2024-11-26 22:09:22 字数 88 浏览 1 评论 0原文

我应该如何摆脱 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的笑 2024-12-03 22:09:22

这取决于你的设计。您可能必须更改某些设计标准才能摆脱它。其中一种选择是在特定派生的基中具有重载的operator =和复制构造函数。

class Derived;
class Base
{
//...
private:
  Base (const Derived&);
  Base& operator = (const Derived&);  // private and unimplemented
};

现在,如果您尝试执行以下操作:

Derived d;
Base b;
b = d; // compiler error

它将导致编译器错误。

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 base class for particular derived class.

class Derived;
class Base
{
//...
private:
  Base (const Derived&);
  Base& operator = (const Derived&);  // private and unimplemented
};

Now if you attempt to do something like following:

Derived d;
Base b;
b = d; // compiler error

it will result in compiler error.

书间行客 2024-12-03 22:09:22

你不能。你应该用指针解决问题。如果要将 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=)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文