📜  C++中的reference_wrapper

📅  最后修改于: 2021-05-30 19:37:08             🧑  作者: Mango

std :: reference_wrapper是一个类模板,它将引用包装在可构造副本和可分配拷贝对象中,或者将引用包装为T型函数。
std :: reference_wrapper的实例是对象(可以将其复制或存储在容器中),但是它们可以隐式转换为“ T&” ,因此可以将它们用作通过引用采用基础类型的函数的参数。

句法:

template  class reference_wrapper;
template parameter(T): type of the referred element and
                        this can be  either function or object.

例子:

// C++ program to demonstrate the
// use of std::reference_wrapper
#include     
#include  
using namespace std;
  
int main () 
{
    char a = 'g', b = 'e', c  = 'e', d = 'k', e = 's';
      
    // creating an array of character "references":
    reference_wrapper ref[] = {a, b, c, d, e};
      
    for (char& s : ref)
          cout << s;
      
    return 0;
}

输出:

geeks
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”