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


C++ utility move_if_noexcept用法及代碼示例



描述

它返回對 arg 的右值引用,除非複製是比移動更好的選擇,以提供至少一個強大的異常保證。

聲明

以下是 std::move_if_noexcept 函數的聲明。

template <class T>
  typename conditional < is_nothrow_move_constructible<T>::value ||
                         !is_copy_constructible<T>::value,
                         T&&, const T& >::type move_if_noexcept(T& arg) noexcept;

C++11

template <class T>
  typename conditional < is_nothrow_move_constructible<T>::value ||
                         !is_copy_constructible<T>::value,
                         T&&, const T& >::type move_if_noexcept(T& arg) noexcept;

參數

arg- 它是一個對象。

返回值

它返回對 arg 的右值引用,除非複製是比移動更好的選擇,以提供至少一個強大的異常保證。

異常

Basic guarantee- 該函數從不拋出異常。

數據競爭

調用此函數不會引入數據競爭。

示例

在下麵的例子中解釋了 std::move_if_noexcept 函數。

#include <iostream>
#include <utility>
 
struct Bad {
   Bad() {}
   Bad(Bad&&) {
      std::cout << "Throwing move constructor called\n";
   }
   Bad(const Bad&) {
      std::cout << "Throwing copy constructor called\n";
   }
};

struct Good {
   Good() {}
   Good(Good&&) noexcept {
      std::cout << "Non-throwing move constructor called\n";
   }
   Good(const Good&) noexcept {
      std::cout << "Non-throwing copy constructor called\n";
   }
};
 
int main() {
   Good g;
   Bad b;
   Good g2 = std::move_if_noexcept(g);
   Bad b2 = std::move_if_noexcept(b);
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

Non-throwing move constructor called
Throwing copy constructor called

相關用法


注:本文由純淨天空篩選整理自 C++ Utility Library - move_if_noexcept Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。