int 整型
long 長整型
double 雙精度型
string 字串 例:string name="mike"; //用雙引號
char 字元型 例:char word='a'; //用單引號
boolean 布林型別(只有true和false)
/*字串相加例子:
string driverfirstname="li";
string driverlastname="yue";
string driverfullname=driverfirstname+" "+driverlastname;//直接將字串合併在一起
system.out.println(driverfullname);//輸出結果為 li yue
*//*字串所有字元轉換為大寫例子:
string drivername="mike";
string drivername=driver.touppercase();//
system.out.println(drivername);//輸出結果為mike
*//*小數運算
double div=5/2; //結果為2
double div=5/2.0; //結果為2.5
*//*強制型別轉換
double f=2.654;
int x=int f ;//結果直接忽略小數部分,結果為2
*//*獲取字串長度例子:
string myfullname="li yue"
int size=myfullname.length()
*//*獲取陣列元素個數例子:
int size=name.length();
*/
java學習筆記
1 scanner的使用 1 在jdk5以後出現的用於鍵盤錄入資料的類。2 構造方法 a 講解了system.in這個東西。它其實是標準的輸入流,對應於鍵盤錄入 b 構造方法 inputstream is system.in scanner inputstream is c 常用的格式 scanne...
java學習筆記
方法傳參 如果某個方法的引數是基本資料型別,那麼傳參方式是賦值方式。如果引數是類,那麼就相當於c的位址傳值 public class hello public static void name helloi i class helloi 判斷時間先後 判斷傳入時間是否在當前時間之前 param ti...
Java學習筆記
1.由 基本資料型態轉換成 string string 類別中已經提供了將基本資料型態轉換成 string 的 static 方法 也就是 string.valueof 這個引數多載的方法 有下列幾種 string.valueof boolean b 將 boolean 變數 b 轉換成字串 str...