我的主要目的是将选项卡中存储的字符存储为String相同长度的字符。
所以我尝试的是使用循环和方法String用选项卡中相同位置的字符替换 I 在开头声明的每个字符。forreplace(oldChar, newChar)
public static void main(String[] args) {
String card = "xxxx";
char[] code = {'0', '1', '2', '3',};
for (int i = 0; i < code.length-1; i++) {
card.replace(card.charAt(i), code[i]);
}
System.out.println(card);
}
我期望 的输出0123,但是当我运行代码时,它显示原始字符串值 ( xxxx),就好像for循环没有用一样。
月关宝盒
撒科打诨
开满天机
慕尼黑8549860
喵喔喔
相关分类