在 C++ 中,std::decay
是一个模板元函数,它可以将给定的类型转换为其对应的非引用、非 const/volatile 类型
下面是一些示例,展示了如何使用 std::decay
处理引用和指针类型:
#include<iostream>
#include <type_traits>
template<typename T>
void print_type() {
std::cout<< typeid(T).name()<< std::endl;
}
int main() {
// 处理引用类型
int a = 42;
int& ref = a;
using decayed_ref_type = std::decay<decltype(ref)>::type;
print_type<decayed_ref_type>(); // 输出: i,表示 int 类型
// 处理指针类型
int* ptr = &a;
using decayed_ptr_type = std::decay<decltype(ptr)>::type;
print_type<decayed_ptr_type>(); // 输出: i,表示 int 类型
return 0;
}
在这个示例中,我们首先创建了一个名为 print_type
的模板函数,该函数打印给定类型的名称。然后,我们创建了一个整数变量 a
,并分别创建了一个引用 ref
和一个指针 ptr
,它们都指向 a
。接下来,我们使用 std::decay
处理这些引用和指针类型,并打印它们的结果。在这种情况下,std::decay
将引用和指针类型转换为其对应的非引用、非指针类型(在这里是 int
)。