C++11中std::forward的使用 (转)

std::forward argument: Returns an rvalue reference to arg if arg is not an lvalue reference; If arg is an lvalue reference, the function returns arg without modifying its type.

std::forward:This is a helper function to allow perfect forwarding of arguments taken as rvalue references to deduced types, preserving any potential move semantics involved.

std::forward<T>(u)有两个参数:T 与 u。当T为左值引用类型时,u将被转换为T类型的左值,否则u将被转换为T类型右值。如此定义std::forward是为了在使用右值引用参数的函数模板中解决参数的完美转发问题。

std::move是无条件的转为右值引用,而std::forward是有条件的转为右值引用,更准确的说叫做Perfect forwarding(完美转发),而std::forward里面蕴含着的条件则是Reference Collapsing(引用折叠)。

std::move不move任何东西。std::forward也不转发任何东西。在运行时,他们什么都不做。不产生可执行代码,一个比特的代码也不产生。

std::move和std::forward只是执行转换的函数(确切的说应该是函数模板)。std::move无条件的将它的参数转换成一个右值,而std::forward当特定的条件满足时,才会执行它的转换。

std::move表现为无条件的右值转换,就其本身而已,它不会移动任何东西。 std::forward仅当参数被右值绑定时,才会把参数转换为右值。 std::move和std::forward在运行时不做任何事情。

下面是从其他文章中copy的测试代码,详细内容介绍可以参考对应的reference:

[cpp] view plain copy

  1. #include "forward.hpp"
  2. #include <utility>
  3. #include <iostream>
  4. #include <memory>
  5. #include <string>
  6. //////////////////////////////////////////////
  7. // reference: http://en.cppreference.com/w/cpp/utility/forward
  8. struct A {
  9. A(int&& n) { std::cout << "rvalue overload, n=" << n << "\n"; }
  10. A(int& n)  { std::cout << "lvalue overload, n=" << n << "\n"; }
  11. };
  12. class B {
  13. public:
  14. template<class T1, class T2, class T3>
  15. B(T1&& t1, T2&& t2, T3&& t3) :
  16. a1_{ std::forward<T1>(t1) },
  17. a2_{ std::forward<T2>(t2) },
  18. a3_{ std::forward<T3>(t3) }
  19. {
  20. }
  21. private:
  22. A a1_, a2_, a3_;
  23. };
  24. template<class T, class U>
  25. std::unique_ptr<T> make_unique1(U&& u)
  26. {
  27. return std::unique_ptr<T>(new T(std::forward<U>(u)));
  28. }
  29. template<class T, class... U>
  30. std::unique_ptr<T> make_unique(U&&... u)
  31. {
  32. return std::unique_ptr<T>(new T(std::forward<U>(u)...));
  33. }
  34. int test_forward1()
  35. {
  36. auto p1 = make_unique1<A>(2); // rvalue
  37. int i = 1;
  38. auto p2 = make_unique1<A>(i); // lvalue
  39. std::cout << "B\n";
  40. auto t = make_unique<B>(2, i, 3);
  41. return 0;
  42. }
  43. ////////////////////////////////////////////////////////
  44. // reference: http://www.cplusplus.com/reference/utility/forward/
  45. // function with lvalue and rvalue reference overloads:
  46. void overloaded(const int& x) { std::cout << "[lvalue]"; }
  47. void overloaded(int&& x) { std::cout << "[rvalue]"; }
  48. // function template taking rvalue reference to deduced type:
  49. template <class T> void fn(T&& x) {
  50. overloaded(x);                   // always an lvalue
  51. overloaded(std::forward<T>(x));  // rvalue if argument is rvalue
  52. }
  53. int test_forward2()
  54. {
  55. int a;
  56. std::cout << "calling fn with lvalue: ";
  57. fn(a);
  58. std::cout << ‘\n‘;
  59. std::cout << "calling fn with rvalue: ";
  60. fn(0);
  61. std::cout << ‘\n‘;
  62. return 0;
  63. }
  64. //////////////////////////////////////////////////////
  65. // reference: http://stackoverflow.com/questions/8526598/how-does-stdforward-work
  66. template<class T>
  67. struct some_struct{
  68. T _v;
  69. template<class U>
  70. some_struct(U&& v) : _v(static_cast<U&&>(v)) {} // perfect forwarding here
  71. // std::forward is just syntactic sugar for this
  72. };
  73. int test_forward3()
  74. {
  75. /* remember the reference collapsing rules(引用折叠规则):
  76. 前者代表接受类型,后者代表进入类型,=>表示引用折叠之后的类型,即最后被推导决断的类型
  77. TR   R
  78. T&   &->T&   // lvalue reference to cv TR -> lvalue reference to T
  79. T&   &&->T&  // rvalue reference to cv TR -> TR (lvalue reference to T)
  80. T&&  &->T&   // lvalue reference to cv TR -> lvalue reference to T
  81. T&&  &&->T&& // rvalue reference to cv TR -> TR (rvalue reference to T) */
  82. some_struct<int> s1(5);
  83. // in ctor: ‘5‘ is rvalue (int&&), so ‘U‘ is deduced as ‘int‘, giving ‘int&&‘
  84. // ctor after deduction: ‘some_struct(int&& v)‘ (‘U‘ == ‘int‘)
  85. // with rvalue reference ‘v‘ bound to rvalue ‘5‘
  86. // now we ‘static_cast‘ ‘v‘ to ‘U&&‘, giving ‘static_cast<int&&>(v)‘
  87. // this just turns ‘v‘ back into an rvalue
  88. // (named rvalue references, ‘v‘ in this case, are lvalues)
  89. // huzzah, we forwarded an rvalue to the constructor of ‘_v‘!
  90. // attention, real magic happens here
  91. int i = 5;
  92. some_struct<int> s2(i);
  93. // in ctor: ‘i‘ is an lvalue (‘int&‘), so ‘U‘ is deduced as ‘int&‘, giving ‘int& &&‘
  94. // applying the reference collapsing rules yields ‘int&‘ (& + && -> &)
  95. // ctor after deduction and collapsing: ‘some_struct(int& v)‘ (‘U‘ == ‘int&‘)
  96. // with lvalue reference ‘v‘ bound to lvalue ‘i‘
  97. // now we ‘static_cast‘ ‘v‘ to ‘U&&‘, giving ‘static_cast<int& &&>(v)‘
  98. // after collapsing rules: ‘static_cast<int&>(v)‘
  99. // this is a no-op, ‘v‘ is already ‘int&‘
  100. // huzzah, we forwarded an lvalue to the constructor of ‘_v‘!
  101. return 0;
  102. }
  103. ////////////////////////////////////////////////////
  104. // reference: https://oopscenities.net/2014/02/01/c11-perfect-forwarding/
  105. void sum(int a, int b)
  106. {
  107. std::cout << a + b << std::endl;
  108. }
  109. void concat(const std::string& a, const std::string& b)
  110. {
  111. std::cout<< a + b << std::endl;
  112. }
  113. void successor(int a, int& b)
  114. {
  115. b = ++a;
  116. }
  117. template <typename PROC, typename A, typename B>
  118. void invoke(PROC p, A&& a, B&& b)
  119. {
  120. p(std::forward<A>(a), std::forward<B>(b));
  121. }
  122. int test_forward4()
  123. {
  124. invoke(sum, 10, 20);
  125. invoke(concat, "Hello", "world");
  126. int s = 0;
  127. invoke(successor, 10, s);
  128. std::cout << s << std::endl;
  129. return 0;
  130. }

GitHubhttps://github.com/fengbingchun/Messy_Test

时间: 2024-11-03 05:36:50

C++11中std::forward的使用 (转)的相关文章

C++11中std condition variable的使用

<condition_variable>是C++标准程序库中的一个头文件,定义了C++11标准中的一些用于并发编程时表示条件变量的类与方法等. 条件变量是并发程序设计中的一种控制结构.多个线程访问一个共享资源(或称临界区)时,不但需要用互斥锁实现独享访问以避免并发错误(称为竞争危害),在获得互斥锁进入临界区后还需要检验特定条件是否成立: (1).如果不满足该条件,拥有互斥锁的线程应该释放该互斥锁,把自身阻塞(block)并挂到(suspend)条件变量的线程队列中 (2).如果满足该条件,拥有

C++11中std unordered map的使用

unordered map is an associative container that contains key-value pairs with unique keys. Search, insertion, and removal of elements have average constant-time complexity. Internally, the elements are not sorted in any particular order,but organized

C++/C++11中std::numeric_limits的使用

https://blog.csdn.net/fengbingchun/article/details/77922558 https://www.2cto.com/kf/201707/654311.html 原文地址:https://www.cnblogs.com/kerngeeksund/p/11104663.html

C++11学习笔记:std::move和std::forward源码分析

std::move和std::forward是C++0x中新增的标准库函数,分别用于实现移动语义和完美转发. 下面让我们分析一下这两个函数在gcc4.6中的具体实现. 预备知识 引用折叠规则: X& + & => X& X&& + & => X& X& + && => X& X&& + && => X&& 函数模板参数推导规则(右值引用参数部分):

用C++11的std::async代替线程的创建

c++11中增加了线程,使得我们可以非常方便的创建线程,它的基本用法是这样的: void f(int n); std::thread t(f, n + 1); t.join(); 但是线程毕竟是属于比较低层次的东西,有时候使用有些不便,比如我希望获取线程函数的返回结果的时候,我就不能直接通过thread.join()得到结果,这时就必须定义一个变量,在线程函数中去给这个变量赋值,然后join,最后得到结果,这个过程是比较繁琐的.c++11还提供了异步接口std::async,通过这个异步接口可以

(原创)用C++11的std::async代替线程的创建

(原创)用C++11的std::async代替线程的创建 c++11中增加了线程,使得我们可以非常方便的创建线程,它的基本用法是这样的: void f(int n); std::thread t(f, n + 1); t.join(); 但是线程毕竟是属于比较低层次的东西,有时候使用有些不便,比如我希望获取线程函数的返回结果的时候,我就不能直接通过thread.join()得到结果,这时就必须定义一个变量,在线程函数中去给这个变量赋值,然后join,最后得到结果,这个过程是比较繁琐的.c++11

c++11 中的 move 与 forward

一. move 关于 lvaue 和 rvalue,在 c++11 以前存在一个有趣的现象:T&  指向 lvalue (左传引用), const T& 既可以指向 lvalue 也可以指向 rvalue.但却没有一种引用类型,可以限制为只指向 rvalue.这乍看起来好像也不是很大的问题,但其实不是这样,右值引用的缺失有时严重限制了我们在某些情况下,写出更高效的代码.举个粟子,假设我们有一个类,它包含了一些资源: class holder { public: holder() { res

c++11 标准库函数 std::move 和 完美转发 std::forward

c++11 标准库函数 std::move 和 完美转发 std::forward #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> #include <vector> #include <map> // C++中还有一个被广泛认同的说法,那就是可以取地址的.有名字的就是左值,反之,不能取地址的.没有名字的就是右值. // 相对于左值,右值表示字面常量.表达式.函数的非

C++11新特性之 std::forward(完美转发)(转)

我们也要时刻清醒,有时候右值会转为左值,左值会转为右值. (也许"转换"二字用的不是很准确) 如果我们要避免这种转换呢? 我们需要一种方法能按照参数原来的类型转发到另一个函数中,这才完美,我们称之为完美转发. std::forward就可以保存参数的左值或右值特性. 因为是这样描述的: When used according to the following recipe in a function template, forwards the argument to another