共用方式為


cref Function

從引數的 const reference_wrapper 。

template<class Ty>
    reference_wrapper<const Ty> cref(const Ty& arg);
template<class Ty>
    reference_wrapper<const Ty> cref(const reference_wrapper<Ty>& arg);

參數

  • Ty
    包裝的引數型別。

  • arg
    要包裝的引數。

備註

第一個讓函式傳回 reference_wrapper<const Ty>(arg.get())。 您會用它來包裝 Const 的參考。 第二個函式會傳回 reference_wrapper<const Ty>(arg)。 您會用它來為 rewrap 包裝的參考為 const 參考。

範例

 

// std_tr1__functional__cref.cpp 
// compile with: /EHsc 
#include <functional> 
#include <iostream> 
 
int neg(int val) 
    { 
    return (-val); 
    } 
 
int main() 
    { 
    int i = 1; 
 
    std::cout << "i = " << i << std::endl; 
    std::cout << "cref(i) = " << std::cref(i) << std::endl; 
    std::cout << "cref(neg)(i) = " 
        << std::cref(&neg)(i) << std::endl; 
 
    return (0); 
    } 
 
  

需求

標題: <functional>

命名空間: std

請參閱

參考

ref Function

reference_wrapper Class