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

suppose I have a method

void f(byte b);

how can I call it with a numeric argument without casting:

f(0);

gives an error. any ideas

share|improve this question
4  
What about f( Byte.valueOf( String.valueOf( 0 ) ).byteValue() ) – oliholz Mar 4 '11 at 12:59
@oliholz that's downcasting with additional parsing overhead – Ben Barkay May 5 at 13:44

5 Answers

up vote 63 down vote accepted

You cannot. A basic numeric constant is considered an integer, so you must explicitly downcast it to a byte to pass it as a parameter. As far as I know there is no shortcut.

share|improve this answer
3  
dammit... thanks for the hint! +1 – gd1 Aug 17 '11 at 15:42
5  
You out-skeeted skeet! – Richard J. Ross III Sep 28 '12 at 17:48
Not if I can help it. – BumSkeeter Jan 14 at 22:46

You have to cast, I'm afraid:

f((byte)0);

I believe that will perform the appropriate conversion at compile-time instead of execution time, so it's not actually going to cause performance penalties. It's just inconvenient :(

share|improve this answer

What about overriding the method with

void f(int value)
{
  f((byte)value);
}

this will allow for f(0)

share|improve this answer
@DR thanks a lot – Boris Pavlović Mar 4 '11 at 14:51
+1 this is pretty nice – user12345613 Mar 18 '12 at 5:40

If you're passing literals in code, what's stopping you from simply declaring it ahead of time?

byte b = 0; //Set to desired value.
f(b);
share|improve this answer
2  
It defaults to 0 only if it is not a local variable, though. – Paŭlo Ebermann Mar 4 '11 at 13:42
Seems I should brush up on my primitives. Thanks, I corrected it. – yock Mar 4 '11 at 15:10
This also allows you to give the value a more semantic name. en.wikipedia.org/wiki/… – Aaron J Lang May 9 '12 at 13:31
This is useful. If you're trying to fill an array of bytes using java's 'fill' method, this is most sensible. – RiverC Jul 11 '12 at 20:01
The compiler just complained about the following, however, and I needed to add the cast: public static final byte BYTE_MASK = ( byte )0xff; – Marvo Jul 27 '12 at 20:45
show 1 more comment

If you wanted a string, you could convert a String constant. E.g., "this is going to be translated into bytes".getBytes()

share|improve this answer
1  
This does not answer the question. – Eva Jan 27 at 1:38

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.