reference_wrapper::type
包裝的參考型別。
typedef Ty type;
備註
是typedef樣板引數的 Ty一個同義資料表。
範例
// std_tr1__functional__reference_wrapper_type.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
int neg(int val)
{
return (-val);
}
int main()
{
int i = 1;
typedef std::reference_wrapper<int> Mywrapper;
Mywrapper rwi(i);
Mywrapper::type val = rwi.get();
std::cout << "i = " << i << std::endl;
std::cout << "rwi = " << val << std::endl;
return (0);
}
需求
標題: <functional>
命名空間: std