c++智能指针简单示例

代码

#include
using namespace std;
#include // 头文件

class TestClass
{
private:
	int Value;

public:
	TestClass(int value) :Value(value) {
		cout << "构造函数调用" << endl;
	}
	~TestClass() {
		cout << "析构函数调用" << endl;
	}

	void hello()
	{
		cout << "hello, smart ptr!" << endl;
	}
};

int main()
{
	shared_ptr<TestClass> pTest(new TestClass(8));
	pTest->hello();

	return 0;
}

结果

c++智能指针简单示例_第1张图片

你可能感兴趣的:(c++学习,c++,开发语言)