Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hoping for something more elegant than

if (i>0 && i<100) 
share|improve this question
9  
Compared to some other Java code, that's the zenith of elegance. :) – sarnold Apr 6 '11 at 23:13
3  
What's wrong with what you have? – GreenMatt Apr 6 '11 at 23:13
2  
The obvious solution is to have a class RangeChecker<Integer> and I'm sure you can fill in the details from there. – corsiKa Apr 6 '11 at 23:15
2  
maybe OP was hoping for a semantic possibility akin to BETWEEN in SELECT * FROM aTable WHERE aDate BETWEEN lower AND upper – Simen S Apr 6 '11 at 23:16
2  
Just as point of interest, Python allows the syntax 0 < i < 100 for tests like this. – Greg Hewgill Apr 6 '11 at 23:21
show 2 more comments

5 Answers

You could add spacing ;)

if (i > 0 && i < 100) 
share|improve this answer
don't cramp my style! no i usually space it like that. – herpderp Apr 6 '11 at 23:34
if ( 0 < i && i < 100)  

if ( 'a' <= c && c <= 'z' )
share|improve this answer
1  
Apart from the inconsistent spacing in the first example perfect! – Jakub Hampl Apr 6 '11 at 23:37
Too bad the 6 character rule prevents any fixes to the spacing. – Martin Apr 18 '12 at 7:41

I don't see how that's not elegant, but if you repeat the expression often, then it's a good idea to put it into a method, e.g.

class MathUtil
{
   public static boolean betweenExclusive(int x, int min, int max)
   {
       return x>min && x<max;    
   }
}

This is particularly true if you mix exclusive and inclusive comparisons. The method name can help avoid typos, such as using < when <= should have been used. The method can also take care of ensuring that min < max etc..

share|improve this answer
2  
It is a good idea, until someone puts in boolean accepted = MathUtil.betweenExclusive(min,max,x); and mungles the order. :( – corsiKa Apr 6 '11 at 23:16
I know! Ouch. In those cases, a Range object can be useful. – mdma Apr 6 '11 at 23:18
My RangeChecker object was actually a joke, but in hindsight, it actually isn't that bad of a solution (even if it is overkill.) – corsiKa Apr 6 '11 at 23:20

Try:

if (i>0 && i<100) {} 

it will work at least ;)

share|improve this answer

That's how you check is an integer is in a range. Greater than the lower bound, less than the upper bound. Trying to be clever with subtraction will likely not do what you want.

share|improve this answer
Trying to be clever with subtraction can lead to integer over- or underflow and give you an incorrect result. – corsiKa Apr 6 '11 at 23:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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