小编典典

如何串联Java中的字符串?

java

strKeyword将根据循环被重复。如何将结果另存为新字符串。例如,如果工作“ hello”重复了两次,我现在将如何创建“
hellohello”作为一个全新的字符串。

for (int l = 0; l < newKeywordLength; l++) {          
    System.out.print(strKeyword);
}

阅读 298

收藏
2020-11-30

共1个答案

小编典典

string newWord="";
for (int l=0; l<newKeywordLength; l++){           
         newWord+=strKeyword;
}
System.out.print(newWord);
2020-11-30