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
|
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. |
|||||||||||
|
|
You have to cast, I'm afraid:
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 :( |
|||
|
|
|
What about overriding the method with
this will allow for |
|||||
|
|
|
If you're passing literals in code, what's stopping you from simply declaring it ahead of time?
|
|||||||||||||
|
|
If you wanted a string, you could convert a String constant. E.g., "this is going to be translated into bytes".getBytes() |
|||||
|
f( Byte.valueOf( String.valueOf( 0 ) ).byteValue() )– oliholz Mar 4 '11 at 12:59