我是否使用字符串,错误调用如下:
无法访问的语句,使用==或!=
对字符串进行comaparing
也尝试了equals
,但是在这里调用相同的错误,请帮忙吗?
public boolean register(int hwork, String album) {
hwork=6;
album="116614";
throw new UnsupportedOperationException();
if(album=="166614")
return true;
else
return false;
}
答案 0 :(得分:1)
throw new UnsupportedOperationException();
if(album=="166614")
return true;
else
return false;
}
编译器可以看到您正在抛出异常。因此,该方法的执行不会再进一步