add_reference Class
makes 引用从类型。
template<class Ty>
struct add_reference;
参数
- Ty
修改的类型。
备注
该类型修饰符的实例保存一修改类型为 Ty ,如果 Ty 是引用,否则 Ty&。
示例
// std_tr1__type_traits__add_reference.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
int main()
{
int val = 0;
std::add_reference<int>::type p = (int&)val;
p = p; // to quiet "unused" warning
std::cout << "add_reference<int> == "
<< typeid(p).name() << std::endl;
return (0);
}
要求
**标题:**type_traits
命名空间: std