Hoping for something more elegant than
if (i>0 && i<100)
|
You could add spacing ;)
|
|||
|
|
|
|||||||
|
|
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.
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.. |
|||||||||
|
|
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. |
|||
|
class RangeChecker<Integer>and I'm sure you can fill in the details from there. – corsiKa Apr 6 '11 at 23:15SELECT * FROM aTable WHERE aDate BETWEEN lower AND upper– Simen S Apr 6 '11 at 23:160 < i < 100for tests like this. – Greg Hewgill Apr 6 '11 at 23:21