一个smart point的实现

一个smart point的实现(摘自 More Effective C++)

 

template<class T>

class auto_ptr 

{

public:

  explicit auto_ptr(T *p = 0): pointee(p) {}

  template<class U>

  auto_ptr(const auto_ptr<U>& rhs): pointee(rhs.release()) {} //copy constructor

  ~auto_ptr() { delete pointee; }

  template<class U>

  auto_ptr<T>& operator=(const auto_ptr<U>& rhs) //copy operator

  {

    if (this != &rhs) reset(rhs.release());

    return *this;

  }

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

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

  T* get() const { return pointee; }

  T* release()

  {

    T *oldPointee = pointee;

    pointee = 0;

    return oldPointee;

  }

  void reset(T *p = 0)

  {

    if (pointee != p) {

      delete pointee;

      pointee = p;

    }

  }

  private:

    T *pointee;

    template<class U> friend class auto_ptr<U>;

  };

你可能感兴趣的:(c,Constructor)