reference_wrapper::operator Ty&

具有指针被包装引用。

operator Ty&() const;

备注

成员运算符返回 *ptr。

示例

 

// std_tr1__functional__reference_wrapper_operator_cast.cpp 
// compile with: /EHsc 
#include <functional> 
#include <iostream> 
 
int main() 
    { 
    int i = 1; 
    std::reference_wrapper<int> rwi(i); 
 
    std::cout << "i = " << i << std::endl; 
    std::cout << "(int)rwi = " << (int)rwi << std::endl; 
 
    return (0); 
    } 
 
  

要求

标头: <functional>

命名空间: std

请参见

参考

reference_wrapper Class

reference_wrapper::operator()