std::remove_reference
来自 cppreference.com
定义在头文件 <type_traits> 中 |
||
template< class T > struct remove_reference; |
(自 C++11 起) | |
如果类型 T
是一个引用类型,则提供成员类型定义 type
,它是 T
所引用的类型。否则 type
为 T
。
如果程序为 std::remove_reference
添加了专门化,则行为未定义。
内容 |
[编辑] 成员类型
名称 | 定义 |
type
|
T 所引用的类型,或者如果它不是引用,则为 T |
[编辑] 辅助类型
template< class T > using remove_reference_t = typename remove_reference<T>::type; |
(自 C++14 起) | |
[编辑] 可能的实现
template<class T> struct remove_reference { typedef T type; }; template<class T> struct remove_reference<T&> { typedef T type; }; template<class T> struct remove_reference<T&&> { typedef T type; }; |
[编辑] 示例
运行此代码
#include <iostream> #include <type_traits> int main() { std::cout << std::boolalpha; std::cout << "std::remove_reference<int>::type is int? " << std::is_same<int, std::remove_reference<int>::type>::value << '\n'; std::cout << "std::remove_reference<int&>::type is int? " << std::is_same<int, std::remove_reference<int&>::type>::value << '\n'; std::cout << "std::remove_reference<int&&>::type is int? " << std::is_same<int, std::remove_reference<int&&>::type>::value << '\n'; std::cout << "std::remove_reference<const int&>::type is const int? " << std::is_same<const int, std::remove_reference<const int&>::type>::value << '\n'; }
输出
std::remove_reference<int>::type is int? true std::remove_reference<int&>::type is int? true std::remove_reference<int&&>::type is int? true std::remove_reference<const int&>::type is const int? true
[编辑] 另请参见
(C++11) |
检查类型是否为左值引用或右值引用 (类模板) |
(C++11)(C++11) |
向给定类型添加左值或右值引用 (类模板) |
(C++20) |
组合了 std::remove_cv 和 std::remove_reference (类模板) |