标签: c++ types
假设我有以下
class X { typedef some_numeric_type my_type; }
如何确定my_type的限制?
my_type
答案 0 :(得分:7)
<limits>标题中的std::numeric_limits。
<limits>
std::numeric_limits
#include <limits> std::numeric_limits<my_type>::min() std::numeric_limits<my_type>::max()