例如
,如果需要在条件语句中sqrt(x) = 10
首选避免Real domain
(double/float)
并建议使用时采取行动Integer domain
编码
int x = 100;
// Real (double/float) domain
if (Math.sqrt(x) == 10) { // Not recommended
// .... Action
}
// Integer domain
if (x == 10 * 10) { // recommended
// .... Action
}
为什么我