相互轉化見示例
1 struct test 2 { 3 int num; 4 string name; 5 }; 6 7 test* pTest = new test(); 8 std::shared_ptr<test> ptr_test = std::shared_ptr<test>(pTest); //普通指針轉shared_ptr 9 10 std::shared_ptr<test> ptr_test2 = std::make_shared<test>(); 11 test* pTest2 = ptr_test2.get(); //shared_ptr轉普通指針