java 04

一如初见233發表於2024-07-19

不可以用0或非0代替false或true;
資料型別按精度大小排序:
char<int<long<float<double
byte<short<int<long<float<double;
自動型別轉換 低向高;
byte short char不會相互轉換;三者之間可以運算,會先轉成int型;
byte b3=b1+b2 錯誤,運算後結果變為int型;
+“”變字串;

相關文章