gpt4 book ai didi

java - GET:字符串比较不起作用

转载 作者:行者123 更新时间:2023-12-03 20:26:16 25 4
gpt4 key购买 nike

我在 GWT MVP 应用程序中的演示器中有以下代码:

public void onFailure(ServerFailure error) {

String errCode = error.getMessage();

Window.alert(errCode);
Window.alert("Server Error: pleaseEnterQuestion");

if(errCode == "Server Error: pleaseEnterQuestion")
Window.alert("same");
else
Window.alert("different");
}

前两个警报看起来完全一样。第三个警报是不同的。但我希望它相同

最佳答案

使用等于,而不是==,来比较字符串:

if("Server Error: pleaseEnterQuestion".equals(errCode))

有关更多信息,请参阅此 SO 问题:How do I compare strings in Java?

关于java - GET:字符串比较不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5962458/

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