i want to compare two MyDouble values with zero.
if(getA()>(MyDouble.zero)) //where getA() is MyDouble
but it does not let me do that. Does anyone knows how to solve it?
|
i want to compare two MyDouble values with zero.
but it does not let me do that. Does anyone knows how to solve it?
| ||||
|
feedback
|
|
You have to write a You won't be able to use the '>' comparison symbols to do it. You'll do something like this:
| |||||||
feedback
|
|
You should implement duffmo's solution as this is what Double and all Numbers do. Another way to solve this is to access the fields directly or provide a specific method to do the comparison. (This could be more efficient than implementing compareTo)
or
| |||||
feedback
|
MyDouble? – BoltClock♦ Apr 3 '11 at 3:24