I need to iterate through all byte values (-128 to 127 inclusive). I could use an int iterator, but then I have to cast each time to byte. Using a byte iterator has the problem that I can't test for b < 128 as it will overflow. I thought of using a while loop and doing the test before incrementing, which is my best solution so far. Is there a better approach?
|
|
||||
|
Java bytes are signed so they have the values -128 to 127. Anyway, you shouldn't worry about casts and extra checks like that because they are trivial to optimize away. In fact, at the JVM level, there's no such thing as a byte variable. It's treated as an int anyway. |
|||||||||||||
|
Test for However, I agree with Antimony that it probably makes no difference whether you use At the language level I think that the typecast will be happening in the
and that the typecast is not a noop because
has a notional typecast in it. Whether this means anything from a performance perspective is debatable, because the JIT does a lot of work to optimize away unnecessary operations when generating native code. Finally, standard points about micro-optimization in Java:
|
||||
byteis -128..127. You'll need to use a wider type. As annoying as it may be, that's the way the fathers of Java chose to go. – fvu Jun 30 '12 at 0:10