gpt4 book ai didi

c++ - 奇怪的 C++ 成员函数声明语法 : && qualifier

转载 作者:太空狗 更新时间:2023-10-29 20:32:14 24 4
gpt4 key购买 nike

来自 Boost::Thread :

template <typename R>
class shared_future
{
...
// move support
shared_future(shared_future && other);
shared_future(unique_future<R> && other);
shared_future& operator=(shared_future && other);
shared_future& operator=(unique_future<R> && other);
...
}

那些双符号到底是什么?我查看了“BS The C++ Langauge 3d edition”,但找不到任何解释。

最佳答案

这是对右值引用的 C++0x 添加。

参见 http://www.artima.com/cppsource/rvalue.html .

关于c++ - 奇怪的 C++ 成员函数声明语法 : && qualifier,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2310659/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com