java 學習 day01 變數

weixin_39210914發表於2020-11-04

1、float格式變數定義:

  float x=1.23F;

2、long型別變數定義:

long y=10000000000L;

3、型別強制轉換(不建議):

int a=10;
byte b=10;
byte e =(byte)(a+b);

相關文章