其他分享
首页 > 其他分享> > c – 使用weak_ptr作为参数的函数重载分辨率

c – 使用weak_ptr作为参数的函数重载分辨率

作者:互联网

我有:

class A : public std::enable_shared_from_this<A>
{...};

class B : public A
{...}; 

void doCoolStuff(std::weak_ptr<A> obj)
{...}

void doCoolStuff(std::weak_ptr<B> obj)
{
 ...
 doCoolStuff(std::static_pointer_cast<A>(obj.lock())); (1)
}

然后在B函数中:

void B::doReallyCoolStuff()
{
 doCoolStuff(std::static_pointer_cast<B>(shared_from_this())); (2)
}

所以问题是:

>编译器错误:错误C2440:’static_cast’:无法从’B * const’转换为’A *’
>编译器错误:错误C2668:对重载函数的模糊调用

我不明白如何解决它们中的任何一个,因为:

>我认为它以某种方式与shared_from_this连接,因为这是const指针.但我不知道如何在没有const_cast的情况下处理这种情况.
>我不知道函数是否可以被不同类型的弱指针重载.

构建环境:MSVS 2013 express

请帮忙.谢谢

解决方法:

至于问题(2),你当然可以像这样超载.但问题是你正在调用类型为std :: shared_ptr< B>的函数.这需要隐式转换为std :: weak_ptr,并且它可以转换为std :: weak_ptr< A>和std :: weak_ptr< B>.这两个都是由std :: weak_ptr中的隐式转换构造函数实现的,这意味着它们都不比另一个好.因此含糊不清.

要解决此问题,您可以明确指定类型:

void B::doReallyCoolStuff()
{
    doCoolStuff(std::weak_ptr<B>(std::static_pointer_cast<B>(shared_from_this())));
}

Live example

或者,您可以使用std :: shared_ptr提供doCoolStuff的重载.

如上面的实例所示,我无法重现问题(1).

标签:static-cast,weak-ptr,c,c11,smart-pointers
来源: https://codeday.me/bug/20190725/1529742.html