shared_ptr, unique_ptr,weak_ptr
#include <iostream> #include <memory> class MyClass { public: MyClass() { std::cout << "MyClass constructed" << std::endl; } ~MyClass() { std::cout << "MyClass destructed" << std::endl; } void DoSomething() { std::cout << "Doing something" << std::endl; } }; int main() { // 使用 shared_ptr std::shared_ptr<MyClass> ptr1 = std::make_shared<MyClass>(); ptr1->DoSomething(); // 使用 unique_ptr std::unique_ptr<MyClass> ptr2 = std::make_unique<MyClass>(); ptr2->DoSomething(); // 使用 weak_ptr std::weak_ptr<MyClass> ptr3 = ptr1; if (std::shared_ptr<MyClass> ptr4 = ptr3.lock()) { ptr4->DoSomething(); } return 0; }