码迷,mamicode.com
首页 > 编程语言 > 详细

C++网易云课堂开发工程师--智能指针

时间:2018-09-02 23:59:35      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:ret   temp   method   const   开发   new   oid   long   sha   

template<class T>

class shared_ptr{

  public:

    T& operator*( ) const {return *px;}

    T*  operator->( )  const {return px;}

    shared_ptr(T* p) : px(p)  { }

  private:

    T* px;

    long* pn;

}

strcut Foo{

  void method(void)  { }

};

shared_ptr<Foo> sp(new )

Foo f(*sp);

sp->method( );

迭代器,pointer-like classes, 智能指针

 

C++网易云课堂开发工程师--智能指针

标签:ret   temp   method   const   开发   new   oid   long   sha   

原文地址:https://www.cnblogs.com/sky-z/p/9575499.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!