gpt4 book ai didi

c++ - 在继承层次结构中使用 boost::shared_ptr

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:01:33 25 4
gpt4 key购买 nike

想象一下下面的情况:

class IAlarm : public boost::enable_shared_from_this<IAlarm>  {
boost::shared_ptr<IAlarm> getThisPointerForIAlarm() {
return shared_from_this();
}

void verifyThis(int); // called by Device
};

class Alarm : public IAlarm {
Alarm( boost::shared_ptr< Device > attachedDevice){
attachedDevice->attachAlarm(this->getThisPointerForIAlarm());
}

void sendAlarm(){
attachedDevice->Alarm();
}

};

class Device {
attachAlarm( boost::shared_ptr< IAlarm > ia){
this->alarm=ia;
}
};

我想将警报附加到设备。 Alarm 和 Device 不允许相互了解(这最终会导致循环依赖)。所以这就是我使用接口(interface)类 IAlarm 的原因。最后,我希望能够将多个警报附加到一台设备上。警报可以访问它们所连接的设备,并且设备可以开始验证连接的警报

一切都编译得很好。但是,如果我尝试将警报附加到设备,我会得到以下信息:

boost::shared_ptr<Device> ptrDevice(new Device());
boost::shared_ptr<IAlarm> ptrAlarm(new Alarm( ptrDevice ));

terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::bad_weak_ptr> >'

what(): tr1::bad_weak_ptr

究竟是什么问题?在将 boost::shared_ptr 与引用和纯指针一起使用之前,此设置或多或少地起作用了。是否可以使用 boost:shared_ptr 来完成这项工作?

最佳答案

shared_from_this() 的调用只有在 shared_ptr 拥有的动态分配对象上调用时才有效(参见要求 listed in the docs )。这意味着必须存在一个拥有该对象的 shared_ptr,否则 shared_from_this() 将不起作用。

特别是这意味着您不能(成功地)在构造函数中调用 shared_from_this(),因为该对象刚刚被构造并且还不属于任何 shared_ptr 实例。

要解决它,您最好将附加警报的代码从构造函数移到一个单独的方法,该方法在对象完全构造后调用:

boost::shared_ptr<Alarm> a(new Alarm());
a->attach(attachedDevice);

关于c++ - 在继承层次结构中使用 boost::shared_ptr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1411279/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com