c – enable_shared_from_这不适用于xcode 5

前端之家收集整理的这篇文章主要介绍了c – enable_shared_from_这不适用于xcode 5前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#include <iostream>
#include <memory>

template<typename T>
class Test: public std::enable_shared_from_this< Test<T> >
{

public:

    std::shared_ptr< Test<T> > getMe()
    {
        return shared_from_this();
    };

};

int main(int argc,const char * argv[])
{
    Test<int>   aTest;

    return 0;
}

当我尝试在Xcode 5上编译时,我得到了

Use of undeclared identifier 'shared_from_this'

我测试了它并在Visual Studio 2010上工作.

解决方法

return this->shared_from_this();
           ^^^^^^

VC 2010没有完全正确地实现模板化基类的查找规则.铿锵行为是正确的.上述修复程序将使其适用于您的两个平台.

原文链接:https://www.f2er.com/c/119231.html

猜你在找的C&C++相关文章