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;AMP_gt;(arg.get())。 您使用它将常数引用。 第二个函数返回 reference_wrapper<const Ty;AMP_gt;(arg)。 当常数引用,使用到rewrap包装引用。

示例

 

// 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