gpt4 book ai didi

java - 字符串比较错误

转载 作者:行者123 更新时间:2023-12-01 10:47:10 27 4
gpt4 key购买 nike

我对 if with string、错误调用感到困惑,如下所示:

Unreachable statement, comaparing strings with == or !=

尝试过equals也,但在这里调用同样的错误,有什么帮助吗?

public boolean register(int hwork, String album) {
hwork=6;
album="116614";
throw new UnsupportedOperationException();
if(album=="166614")
return true;
else
return false;
}

最佳答案

throw new UnsupportedOperationException();
if(album=="166614")
return true;
else
return false;
}

编译器可以看到您正在抛出异常。因此该方法的执行不会再进一步​​

关于java - 字符串比较错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34103036/

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