首頁
返回
繼續
最後一頁
摘要
圖形
字串
字串是Java裡內建的標準物件(只能讀取)。表示如:
“This is a book”
字串變數使用String類別宣告並且給予初值:
String color="Yellow!";
字串建構子
String(char value[]
,int offset,int count
);
String(byte bytes[]
,int offset,int length
);
String(String value);