Setting Short Value Java

后端 未结 4 634
死守一世寂寞
死守一世寂寞 2020-11-28 11:36

I am writing a little code in J2ME. I have a class with a method setTableId(Short tableId). Now when I try to write setTableId(100) it gives compil

4条回答
  •  死守一世寂寞
    2020-11-28 12:14

    You can use setTableId((short)100). I think this was changed in Java 5 so that numeric literals assigned to byte or short and within range for the target are automatically assumed to be the target type. That latest J2ME JVMs are derived from Java 4 though.

提交回复
热议问题