如何检查浮点数是否为真数?那就是:它不是无穷大,负无穷大,NaN ……
float f; ???
解决方法
比std :: fpclassify()更简单的是使用
std::isfinite()
Determines if the given floating point number arg has finite value i.e. it is normal,subnormal or zero,but not infinite or NaN.