我有一个Foobar
类,其sayHello()
方法输出“你好!”。如果我写下面的代码
vector<unique_ptr<Foobar>> fooList;
fooList.emplace_back(new Foobar());
unique_ptr<Foobar> myFoo = move(fooList[0]);
unique_ptr<Foobar> myFoo2 = move(fooList[0]);
myFoo->sayHello();
myFoo2->sayHello();
cout << "vector size: " << fooList.size() << endl;
输出是:
Well hello there!
Well hello there!
vector size: 1
我很困惑为什么这有效。fooList[0]
当我做第一步时不应该变成空吗?为什么myFoo2
有效?
如下Foobar
所示:
class Foobar
{
public:
Foobar(void) {};
virtual ~Foobar(void) {};
void sayHello() const {
cout << "Well hello there!" << endl;
};
};