天天看点

智能指针: double free or corruption (out): 0x00007fffa40

: double free or corruption (out): 0x00007fffa40

使用智能指针和普通指针转换,有时候会报这个错误,所以,如果不是必要,尽量不要相互转换。

当然,也有可能是我用的不对,哈哈:)

https://blog.csdn.net/qq_40340448/article/details/104215228

https://www.cnblogs.com/fushi/p/7768906.html

#include <iostream>
#include <memory>//智能指针的头文件
class test
{
public:
    test(int d) :data(d){}
    int data;
};
int main()
{
    test *p = new test(10);//初始化一个test对象
    std::shared_ptr<test> ptr(p);//构造一个智能指针对象,普通指针转智能指针
    std::cout << ptr->data<<std::endl;//智能指针的行为看起来和普通指针基本一致
    test *q;
    q = ptr.get();//ptr看起来是指针,但本质是对象,它也有成员函数
    std::cout << q->data;
    return 0;
}