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?

link|improve this question

33% accept rate
What is MyDouble? – BoltClock Apr 3 '11 at 3:24
its a custom class like Double but carries a Double Value. – javaLearner Apr 3 '11 at 5:12
What does your custom class add to the behavior that would be worth the effort? – duffymo Apr 3 '11 at 10:40
feedback

2 Answers

You have to write a Comparator<MyDouble> that does the job. You'll implement the Comparator interface.

You won't be able to use the '>' comparison symbols to do it. You'll do something like this:

x.compareTo(y)
link|improve this answer
1  
To clarify why you cannot do '>' comparison here... Java does not have operator overloading. Only native numeric primitives can be used with operators. For custom objects, you use functions. – Konstantin Komissarchik Apr 3 '11 at 5:07
if (!getB().equals(MyDouble.zero)) { if (getB().compareTo(MyDouble.zero)) { return getB(); – javaLearner Apr 3 '11 at 19:41
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)

if(getA().value > MyDouble.ZERO.value) // Constants are in UPPER_CASE

or

if(getA().greaterThan(MyDouble.ZERO))
link|improve this answer
if(!getB().equals(MyDouble.zero)){ if (getB().compareTo(DEFAULT_B)) poly += getB().toString() + "x"; – javaLearner Apr 3 '11 at 18:00
@javaLearner, compareTo returns an int not a boolean. Not sure why you would do equals and compareTo as this is redundant. You don't need to call toString() as it will do this anyway. – Peter Lawrey Apr 3 '11 at 18:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.