在java中将单个字符附加到字符串或char数组中?
是否可以将单个字符附加到 java 的末尾或 java 中。例:array
string
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?
}