共用方式為


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()