0

我进入 std::vector 标题并看到了一些我不明白的东西。

    void push_back(_Ty&& _Val)

我可以理解指向指针的指针,但是有没有像引用引用这样的东西。它将服务于什么目的?

可能是我在问非常基本的问题,但这是我第一次看到的东西。

4

1 回答 1

4

That isn't a reference to a reference — such a thing doesn't exist. It's an r-value reference, which is new to C++11. There are plenty of references (excuse the pun) to this concept online (e.g., here).

于 2013-06-27T11:32:23.847 回答