案例1:
#include <iostream>
int main()
{
double d = 15.50;
std::cout<<(d/0.0)<<std::endl;
}
它可以在没有任何警告的情况下编译并打印 inf
。
但是,
案例2:
#include <iostream>
int main()
{
double d = 15.50;
std::cout<<(d/0)<<std::endl;
}
编译器给出以下警告(现场直播) :
warning: division by zero [-Wdiv-by-zero]
std::cout<<(d/0)<<std::endl;
为什么编译器在第二种情况下给出警告?
是 0 != 0.0
吗?
编辑:
#include <iostream>
int main()
{
if(0 == 0.0)
std::cout<<"Same"<<std::endl;
else
std::cout<<"Not same"<<std::endl;
}
产出:
Same