一、boost::scoped_ptr是一個比較簡單的智能指針,它能保證在離開做用域以後它所管理對象能被自動釋放ios
1 #include <iostream> 2 #include <boost/scoped_ptr.hpp> 3 4 using namespace std; 5 6 class Book 7 { 8 public: 9 Book() 10 { 11 cout << "Creating book ..." << endl; 12 } 13 14 ~Book() 15 { 16 cout << "Destroying book ..." << endl; 17 } 18 }; 19 20 int main() 21 { 22 cout << "=====Main Begin=====" << endl; 23 { 24 boost::scoped_ptr<Book> myBook(new Book()); 25 } 26 cout << "===== Main End =====" << endl; 27 28 return 0; 29 }
二、 boost::shared_ptr是能夠共享全部權的指針。若是有多個shared_ptr共同管理同一個對象時,只有這些shared_ptr所有與該對象脫離關係以後,被管理的對象纔會被釋放。經過下面這個例子先了解下shared_ptr的基本用法:。函數
1 #include <iostream> 2 #include <string> 3 #include <boost/shared_ptr.hpp> 4 5 using namespace std; 6 7 class Book 8 { 9 private: 10 string name_; 11 12 public: 13 Book(string name) : name_(name) 14 { 15 cout << "Creating book " << name_ << " ..." << endl; 16 } 17 18 ~Book() 19 { 20 cout << "Destroying book " << name_ << " ..." << endl; 21 } 22 }; 23 24 int main() 25 { 26 cout << "=====Main Begin=====" << endl; 27 { 28 boost::shared_ptr<Book> myBook(new Book("「1984」")); 29 cout << "[From myBook] The ref count of book is " << myBook.use_count() << ".\n" << endl; 30 31 boost::shared_ptr<Book> myBook1(myBook); 32 cout << "[From myBook] The ref count of book is " << myBook.use_count() << "." << endl; 33 cout << "[From myBook1] The ref count of book is " << myBook1.use_count() << ".\n" << endl; 34 35 cout << "Reset for 1th time. Begin..." << endl; 36 myBook.reset(); 37 cout << "[From myBook] The ref count of book is " << myBook.use_count() << "." << endl; 38 cout << "[From myBook1] The ref count of book is " << myBook1.use_count() << "." << endl; 39 cout << "Reset for 1th time. End ...\n" << endl; 40 41 cout << "Reset for 2th time. Begin ..." << endl; 42 myBook1.reset(); 43 cout << "Reset for 2th time. End ..." << endl; 44 } 45 cout << "===== Main End =====" << endl; 46 47 return 0; 48 }
三、shared_from_this()this
在一個類中須要傳遞類對象自己shared_ptr的地方使用shared_from_this函數來得到指向自身的shared_ptr,它是enable_shared_from_this的成員函數,返回shared_ptr。spa
這個函數僅在shared_ptr的構造函數被調用以後才能使用。緣由是enable_shared_from_this::weak_ptr並不在enable_shared_from_this構造函數中設置,而是在shared_ptr的構造函數中設置。 指針