std::reference_wrapper是一個類模板,它將引用包裝在可複製構造和複製可分配對象中或對類型 T 的函數的引用。
實例std::reference_wrapper是對象(它們可以複製或存儲在容器中),但它們可以隱式轉換為‘T&’以便它們可以用作通過引用獲取基礎類型的函數的參數。
用法:
template <class T> 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 <iostream>
#include <functional>
using namespace std;
int main ()
{
char a = 'g', b = 'e', c = 'e', d = 'k', e = 's';
// creating an array of character "references":
reference_wrapper<char> ref[] = {a, b, c, d, e};
for (char& s : ref)
cout << s;
return 0;
}
輸出:
geeks
相關用法
- C++ remquo()用法及代碼示例
- C++ remainder()用法及代碼示例
- C++ realloc()用法及代碼示例
- C++ remove()用法及代碼示例
- C++ rename()用法及代碼示例
- C++ rewind()用法及代碼示例
- C++ real()用法及代碼示例
- C++ regex_iterator()用法及代碼示例
- C++ rename用法及代碼示例
- C++ regex_error用法及代碼示例
- C++ round()用法及代碼示例
- C++ rint()用法及代碼示例
- C++ raise()用法及代碼示例
- C++ ratio_equal()用法及代碼示例
- C++ ratio_greater()用法及代碼示例
- C++ ratio_greater_equal()用法及代碼示例
- C++ ratio_less()用法及代碼示例
- C++ ratio_less_equal()用法及代碼示例
- C++ ratio_not_equal()用法及代碼示例
- C++ rint(), rintf(), rintl()用法及代碼示例
- C++ rotate用法及代碼示例
- C++ cos()用法及代碼示例
- C++ sin()用法及代碼示例
- C++ asin()用法及代碼示例
- C++ atan()用法及代碼示例
注:本文由純淨天空篩選整理自rajasethupathi大神的英文原創作品 reference_wrapper in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。