在C++中,您可以使用std::isnan
函数来检查一个double
或float
是否为NaN。std::isnan
函数是C++11中引入的,它位于<cmath>
头文件中。以下是如何使用std::isnan
函数的示例:
#include<iostream>
#include <cmath>
int main() {
double num = 0.0 / 0.0; // 计算一个NaN值
if (std::isnan(num)) {
std::cout << "The number is NaN."<< std::endl;
} else {
std::cout << "The number is not NaN."<< std::endl;
}
return 0;
}
在这个示例中,我们尝试将0除以0,这将产生一个NaN值。然后,我们使用std::isnan
函数检查num
是否为NaN。如果是NaN,我们输出"The number is NaN.",否则输出"The number is not NaN."。
领取专属 10元无门槛券
手把手带您无忧上云