当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ utility move用法及代码示例



描述

它返回对 arg 的右值引用。

声明

以下是 std::move 函数的声明。

template <class T>
typename remove_reference<T>::type&& move (T&& arg) noexcept;

C++11

template <class T>
typename remove_reference<T>::type&& move (T&& arg) noexcept;

参数

arg- 它是一个对象。

返回值

它返回一个引用 arg 的右值引用。

异常

Basic guarantee- 该函数从不抛出异常。

数据竞争

调用此函数不会引入数据竞争。

示例

在下面的例子中解释了 std::move 函数。

#include <utility>
#include <iostream>
#include <vector>
#include <string>

int main () {
   std::string foo = "It is a foo string";
   std::string bar = "It is a bar string";
   std::vector<std::string> myvector;

   myvector.push_back (foo);
   myvector.push_back (std::move(bar));

   std::cout << "myvector contains:";
   for (std::string& x:myvector) std::cout << ' ' << x;
   std::cout << '\n';

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

myvector contains:It is a foo string It is a bar string

相关用法


注:本文由纯净天空筛选整理自 C++ Utility Library - move Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。