numeric_limits

#include <limits>


std::numeric_limits<type>


numeric_limits<type>::digits是指type的位数。
numeric_limits<type>::max() type的最大值。
numeric_limits<type>::min() type的最小值

你可能感兴趣的:(include)