0
How can I get a precise 0.0 when using double/float?
I'm using double attributes for a method that determines the (zero points? (I'm German sorry) ) of a square function. How can I use an if function to ask when the value is exactly 0? I'm out of ideas because it never gets exactly 0.0 when calculating with float or double does it? Greetings
2 Respostas
+ 2
usually its often not getting exactly 0.0
i see two possible solutions to the problem.
1. use something like
if(Math.abs(a-b) < 0.0000001) {
// a and b are equal
} else {
// a and b are not equal
}
2. round your double values with something like that:
double d1 = 1.0012345;
BigDecimal bd = new BigDecimal(d1);
bd = bd.setScale(4, RoundingMode.HALF_UP);
System.out.println(bd.doubleValue());
- 1
What i the difference between using if statements and case ???