Smart pointer (use count)

Source: Internet
Author: User

Smart pointer (use count)
STL smart pointer usage

Auto_ptr

  
   
Pi (new int (1024 ));

  
Define smart pointer class (use count)

Implementation Code:

Class RealPtr {friend class AutoPtr; int * ip; size_t use; RealPtr (int * p): ip (p), use (1 ){}~ RealPtr () {delete ip ;}}; class AutoPtr {public: AutoPtr (int * p): ptr (new RealPtr (p) {} AutoPtr (const AutoPtr & orig ): ptr (orig. ptr) {++ ptr-> use;} AutoPtr & operator = (const AutoPtr & rhs) {++ rhs. ptr-> use; if (-- ptr-> use = 0) delete ptr; ptr = rhs. ptr; return * this ;}~ AutoPtr () {if (-- ptr-> use = 0) delete ptr;} int * get_ptr () const {return ptr-> ip;} void set_ptr (int * p) const {ptr-> ip = p;} int get_ptr_val () const {return * ptr-> ip;} void set_ptr_val (int I) {* ptr-> ip = I ;} private: RealPtr * ptr ;};

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.