[C++][原创]std::shared_ptr简单使用

Posted FL1623863129

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[C++][原创]std::shared_ptr简单使用相关的知识,希望对你有一定的参考价值。

#include <iostream>
using namespace std;

class A

public:
    int Add(int a, int b);

;
int A::Add(int a, int b)

    return a + b;

int main()

    //std::shared_ptr<A> a = make_shared<A>();
    std::shared_ptr<A> a = std::shared_ptr<A>(new A());
    int res = a->Add(1,2);
    cout << res << endl;

 

以上是关于[C++][原创]std::shared_ptr简单使用的主要内容,如果未能解决你的问题,请参考以下文章

C++:如何初始化以下 std::shared_ptr 构造函数数组

C++ std::shared_ptr 将初始化类中的其他成员数据

C++智能指针

C++智能指针

大多数人不知道 C++ std::shared_ptr的引用不会增加它的计数值

C++ 中 make_shared 和普通 shared_ptr 的区别