gpt4 book ai didi

java - 有没有办法在选项卡中逐个更改字符串的字符?

转载 作者:行者123 更新时间:2023-12-02 13:25:09 24 4
gpt4 key购买 nike

我的主要目的是将标签中存储的字符存储到具有相同长度的String中。

所以我尝试的是使用 for 循环将我在开头声明的 String 的每个字符替换为选项卡中同一位置的字符以及方法replace(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 循环没用。

最佳答案

I expected the output of 0123 but when I run the code, it shows the original string which is xxxx, as if the for-loop was useless

在 Java 中,字符串对象是不可变的。 replace方法返回一个新的 String 对象,其中包含您所需的修改。

card = card.replace(card.charAt(i), code[i]);

P.s.另外,你的for循环未覆盖数组的最后一个元素。运行它 i < code.length

关于java - 有没有办法在选项卡中逐个更改字符串的字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57419855/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com