資料型別擴充套件
阿新 • • 發佈:2020-12-21
public class Demo03 {
public static void main(String[] args) {
//整數拓展:二進位制(0b) 八進位制(0) 十進位制 十六進位制(0x)
int i1 = 0b10;//ob開頭為二進位制,2
int i2 = 010;//0開頭為八進位制,8
int i3 = 10;//正常開頭為十進位制,10
int i4 = 0x10;//0x開頭為十六進位制,16
System.out.println(i1);
System.out.println(i2);
System.out.println(i3);
System.out.println(i4);
System.out.println("====================================");
//==================================================================
//浮點數拓展:會損失精度。例如:銀行業務,錢。
//BigDecimal 數學工具類
//==================================================================
//float 字元長度有限,離散,舍入誤差,相當於約等於,接近但不等於。
//double
//最好完全避免使用浮點數進行比較!!!!
//最好完全避免使用浮點數進行比較!!!!
//最好完全避免使用浮點數進行比較!!!!
float f = 0.1f;
double d = 0.1;
System.out.println(d == f);//false
System.out.println(d);
System.out.println(f);
float f1 = 12346549794649496f;
double d1 = f1 + 1;
System.out.println(d1 == f1);//true
//===================================================================
//字元拓展:
//===================================================================
System.out.println("=================================================");
char c1 = 'a';
char c2 = '中';
System.out.println(c1);
System.out.println(c2);
System.out.println((int)c1);//強制轉換
System.out.println((int)c2);//強制轉換
//所有的字元本質其實還是數字
//編碼 Unicode 2位元組 0-65536
System.out.println((char)(c1 + c2));//輸出於,字元本質上可以運算。
// U0000 UFFFF
char c3 = '\u0061';
System.out.println(c3);//a
//轉義字元
// \t 製表符
// \n 換行
//......
System.out.println("Hello,World");
System.out.println("Hello\tWorld");
System.out.println("Hello\nWorld");
System.out.println("==================================================");
String sa = new String("Hello,World!");
String sb = new String("Hello,World!");
System.out.println(sa == sb);//false
String sc = "Hello,World!";
String sd = "Hello,World!";
System.out.println(sc == sd);//true
//物件 從記憶體分析
//布林值擴充套件
boolean flag = true;
if (flag == true){}//新手
if (flag){}//老手
//Less is More! 程式碼要精簡易讀
}
}