?????????????????????unique_ptr???÷???????????????????????
????unique_ptr????????????????????????????????????????????????????????????????unique_ptr??????????unique_ptr????????????÷???
????std::unique_ptr<T> myPtr(new T);
????std::unique_ptr<T> myOtherPtr = myPtr; // error
????????unique_ptr??????????????????????unique_ptr???????????std::move????????????unique_ptr????????????????????????????????????????auto_ptr?????unique_ptr?????????????????ī??????????????auto_ptr????????????????????????Ч???
????std::unique_ptr<T> myPtr(new T);
????std::unique_ptr<T> myOtherPtr = std::move(myPtr); // ok
??????????????????std::unique_ptr????????????????棬????????????????????????std::shared_ptr????????????????á?