- C 标准库
- C 标准库
- C++ 标准库
- C++ 库 - 主页
- C++ 库 - <fstream>
- C++ 库 - <iomanip>
- C++ 库 - <ios>
- C++ 库 - <iosfwd>
- C++ 库 - <iostream>
- C++ 库 - <istream>
- C++ 库 - <ostream>
- C++ 库 - <sstream>
- C++ 库 - <streambuf>
- C++ 库 - <原子>
- C++ 库 - <复杂>
- C++ 库 - <异常>
- C++ 库 - <功能>
- C++ 库 - <限制>
- C++ 库 - <语言环境>
- C++ 库 - <内存>
- C++ 库 - <新>
- C++ 库 - <数字>
- C++ 库 - <正则表达式>
- C++ 库 - <stdexcept>
- C++ 库 - <字符串>
- C++ 库 - <线程>
- C++ 库 - <元组>
- C++ 库 - <类型信息>
- C++ 库 - <实用程序>
- C++ 库 - <valarray>
C++ 实用程序库 - 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 的右值引用,除非复制是比移动更好的选择,以至少提供强大的异常保证。
例外情况
基本保证- 该函数永远不会抛出异常。
数据竞赛
调用此函数不会引入数据争用。
例子
在下面的示例中解释了 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
实用程序.htm