c – 联合共享ptr

前端之家收集整理的这篇文章主要介绍了c – 联合共享ptr前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
虽然发生了分段错误,但我想访问联合的共享ptr:
struct union_tmp
{
    union_tmp()
    {}
    ~union_tmp()
    {}
    union
    {
        int a;
        std::shared_ptr<std::vector<int>> ptr;
    };
};

int main()
{
    union_tmp b;
    std::shared_ptr<std::vector<int>> tmp(new std::vector<int>);
    b.ptr = tmp; //here segmentation fault happens
    return 0;
}

错误的原因是什么,我该如何避免?

解决方法

你需要在union中初始化std :: shared_ptr:
union_tmp()
: ptr{} // <--
{}

否则,ptr保持未初始化,并且调用其赋值运算符会触发未定义的行为.

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

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