| Java FAQ | ||
| JSP FAQ | ||
| Servlet FAQ | ||
XyzWs Java FAQ:
Why int can't be passed to wrapper type Byte constructor?
Printer-friendly version |
Mail this to a friend
|
Advertisement
|
Why "byte a = 1;" compiles, but "Byte c = new Byte(1);" error out?Let's take a look at the following code:
class Program {
public static void main (String[] args) {
byte a = 1;
Byte b = new Byte(primitiveByte);
Byte c = new Byte(1);
Byte d = new Byte((byte)1);
System.out.print(b.byteValue() + c.byteValue());
}
}
Why does the line "byte a = 1;" compile without error? and Why does the "Byte c = new Byte(1);" has a compile-time error?. Both of them use the integer literal value 1 within the range of byte. So why explicit casting "(byte)1" is needed? The assignment conversion (such as "byte a = 1;") is different than the method invocation conversion (such as "Byte c = new Byte(1);"). They are two subsections in Java Language Specification 3rd Edition:
Assignment ConversionPlease read the above link for the detail about Assignment Conversion in Java. For our example: byte a = 1; The assignment will not generate the compiler error because at any time if an integral value is assigned to any of the primitive types (byte, char, short), and the right hand side value is within the range of the left hand side data type, it will not generate an error. Hence as 1 is within the range of byte (-128 to 127), it is not generating compiler error. For example: byte a = 129; //Compile-time error When you assign an intergal value to any primitive type variable, the compiler will do a range checking to see if this value is in the range of the left side data type. If it is NOT within the range of data type, a compile-time error occurs. If the righ-hand of assignment is a variable or expression, can narrowing primitive conversions still work (5.1.3 Narrowing Primitive Conversions in Java Language Specification 3rd Edition)?
For example: int i1=1; final int i2 = 127; final int i3 = 245; byte b1 = i1; //Compile-time error, not final variable byte b2 = i2; //OK, compile time constant byte b3 = i3; //Compile-time error, over range byte b4 = (i2 + 2); //OK, compile time constant expression byte b5 = (i1 + 2); //Compile-time error, not final variable
Method Invocation ConversionPlease read the above link for the detail about the Method Invocation Conversion in Java. For our example: Byte c = new Byte(1); A compile-time error will occurs because you are passing an integer to the constructor of the Wrapper class Byte, the compiler will not do the implicit casting here.
|