是否有可能單個字符追加到數組或字符串中的Java將單個字符追加到java中的字符串或char數組中?
末例如:
private static void /*methodName*/() {
String character = "a"
String otherString = "helen";
//this is where i need help, i would like to make the otherString become
// helena, is there a way to do this?
}
我已經嘗試過追加法,但是我對如何使用它非常困惑...... – CodeLover
所以*你怎麼試着使用append方法?你有沒有試過簡單的字符串連接通過+?請注意,字符串和數組是完全不同的東西... –
@CodeLover ..你檢查了String類的文檔嗎?它沒有任何'append'方法。 Google用於'Java中的字符串串聯'。也許你可以得到一些想法 –