我試圖使用split
方法將String
轉換爲String Array
。當我嘗試使用reverse
方法單獨反轉陣列元素時,reverse
方法甚至不會顯示在Eclipse代碼建議中。明確使用reverse
,噴出錯誤說明The method reverse() is undefined for the type String
。 請幫忙!將字符串轉換爲字符串後無法反轉字符串Array
public class Split {
public static void main(String args[]){
String temp;
String names="Apple Banana Cabbage Daffodil";
String[] words = names.split(" ");
for (int i = 0; i < words.length; i++) {
temp = words[i].reverse();
}
}
你想'水仙白菜香蕉Apple'作爲輸出或反轉每個字? – Junaid 2014-11-24 19:29:47
@ Junaid,他在反向之前先分裂。 – Lokesh 2014-11-24 19:31:34
'方法reverse()對於String類型是未定義的 - 這是一條信息錯誤消息。 – 2014-11-24 19:31:58