如何查找未知整数类型的最大值

时间:2013-07-08 08:18:10

标签: c++

如何找到未知类型的最大整数值? 有没有比这更有效的东西:

template<class T>
T test(T i) {
    if (((T)-1) > 0)
       return -1;
    T max_neg = ~(1 << ((sizeof(T)*8)-1));
    T all_ones = -1;
    T max_pos = all_ones & max_neg;
    return max_pos;
}

3 个答案:

答案 0 :(得分:21)

使用std::numeric_limits<T>::max()。从C ++ 11开始,此函数为constexpr,因此在编译时进行评估。

答案 1 :(得分:5)

std::numeric_limits<T>::max()是一个很好的起点。

答案 2 :(得分:0)

这很好:std::numeric_limits<T>::max()或者如果你喜欢boost:boost::integer_traits<T>::max()