我寫了這樣一段代碼:
public CaiFen{
String str1="hello world";
String a[]=str1.split(" ");
for(int i=0;i<a.length;i++){
System.out.println(a[]);
}
}
為什麼輸出結果是:hello
world
split是可以講一個字符串以()裡面的內容進行拆分,使得一個字符串變成一個字符串數組
System.out.println會在你輸出的字符串後面自動添加一個換行符
System.out.print則不會