java赋值一些事务(scjp指南)

java赋值一些事宜(scjp指南)?//byte a 128 // byte can only hold up to 127//short s 32768 // short

java赋值一些事宜(scjp指南)

?

//byte a = 128 // byte can only hold up to 127//short s = 32768 // short 32768  short 是符合位byte a = (byte) 128 //
?

?

字面值不能大于变量的保存范围。

?

?