我尝试使用新的decltype
关键字将一些代码移动到模板,但是当与解除引用的指针一起使用时,它会生成引用类型。 SSCCE:
#include <iostream>
int main() {
int a = 42;
int *p = &a;
std::cout << std::numeric_limits<decltype(a)>::max() << '\n';
std::cout << std::numeric_limits<decltype(*p)>::max() << '\n';
}
第一个numeric_limits
可以工作,但第二个会引发value-initialization of reference type 'int&'
编译错误。如何从指向该类型的指针获取值类型?
答案 0 :(得分:11)
您可以使用std::remove_reference
将其设为非引荐类型:
std::numeric_limits<
std::remove_reference<decltype(*p)>::type
>::max();
或:
std::numeric_limits<
std::remove_reference_t<decltype(*p)>
>::max();
稍微不那么冗长。
答案 1 :(得分:7)
如果你从一个指向指向类型的指针,为什么还要解除引用呢?只是,好吧,删除指针:
std::cout << std::numeric_limits<std::remove_pointer_t<decltype(p)>>::max() << '\n';
// or std::remove_pointer<decltype(p)>::type pre-C++14
答案 2 :(得分:5)
您想要删除引用以及我猜测的const
,因此您可以
std::numeric_limits<std::decay_t<decltype(*p)>>::max()