[ JAVA ]-認識變數

<!--more-->

boolean 預設值為 : false
整數型別預設值為 : int
浮點數預設立場型別為 : double

------------------------------------------------------------------------------------------------

基本資料型態對應的類別 :

short  -->  Short
int  -->  Integer
long  -->  Long
float --> Float
double --> Double
char --> Character

------------------------------------------------------------------------------------------------

整數型態 : 最大值、最小值、長度

使用 Integer 為例
最大值 :
System.out.print(  Integer.MAX_VALUE  );
最小值 :
System.out.print(  Integer.MIN_VALUE  );
長度 :
System.out.print(  Integer.SIZE  );

------------------------------------------------------------------------------------------------

花了一些時間製作圖表


留言

熱門文章