當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。