boost::scoped_ptr<T>和std::unique_ptr<T>之间的唯一区别是std::unique_ptr<T>具有移动语义,而boost::scoped_ptr<T>只是一个get / reset智能指针?