gpt4 book ai didi

java - java中的分割字符串给出了一些问题

转载 作者:行者123 更新时间:2023-12-01 13:18:11 24 4
gpt4 key购买 nike

public class llearning1 {

public static void main(String[] args) {

String text = "is";
String x = "what is good";
String y[] = x.split(" ");

for (String temp: y) {

if (temp == text) {
System.out.println("found");
} else {
System.out.println("nothing");
}
}
}
}

输出:

预期:代码应显示“found”

但它显示“无”

最佳答案

使用equals()方法比较字符串,而不是使用==运算符

== 运算符用于比较对象的引用。

将 if (temp == text) 更改为 if (temp.equals(text))

关于java - java中的分割字符串给出了一些问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22293106/

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