gpt4 book ai didi

java - parseInt 行错误

转载 作者:行者123 更新时间:2023-11-29 07:55:06 26 4
gpt4 key购买 nike

所以,我正在玩我的这款安卓数学游戏。我很难弄清楚为什么会出现这些错误并尝试了一些在互联网上找到的代码,但它不起作用。

我在下面的代码没有错误。但是当我尝试运行它时,我的 logcat 中出现错误。

 check.setOnClickListener(new OnClickListener(){

int x = Integer.valueOf(fn.getText().toString());
int y = Integer.valueOf(sn.getText().toString());

public void onClick(View v){
String ope = op.getText().toString();


if(ope=="+"){
if(x + y == total2){
Toast.makeText(getApplicationContext(), "Answer is correct. You may proceed to level 2.", Toast.LENGTH_LONG).show();
}
}

if(ope=="-"){
if(x-y==total2){
Toast.makeText(getApplicationContext(), "Answer is correct. You may proceed to level 2.", Toast.LENGTH_LONG).show();
}
}


if(ope=="*"){
if(x*y==total2){
Toast.makeText(getApplicationContext(), "Answer is correct. You may proceed to level 2.", Toast.LENGTH_LONG).show();
}
}

if(ope=="/"){
if(x/y==total2){
Toast.makeText(getApplicationContext(), "Answer is correct. You may proceed to level 2.", Toast.LENGTH_LONG).show();
}
else if(y/x==total2){
Toast.makeText(getApplicationContext(), "Answer is correct. You may proceed to level 2.", Toast.LENGTH_LONG).show();
}

}


}});

这是我的 LOGCAT:

enter image description here

我正在解析它,对吧?那么,为什么我会遇到这些错误?

注意: fn 和 sn 是 textView,op 也是。 fn 和 sn 是用户放置操作数答案的地方,而 op 是运算符。游戏给出了这个随机数,用户应该点击 2 个操作数和一个运算符来制作一个方程式并能够得出给定的随机数。她/他的方程式的结果应该与给定的随机数相同。

谢谢你:)

最佳答案

您的代码中有两个问题。首先,正如 Henry 在您的回答中提到的,您需要添加以下几行:

  int x = Integer.valueOf(fn.getText().toString());
int y = Integer.valueOf(sn.getText().toString());

onClick 方法内部

第二个问题是您正在使用 == 在所有 if 检查中进行字符串比较,例如:

     if(ope=="+")

您应该使用 String equals() 方法来进行字符串比较。更改它和其他 if 条件以使用 equals 方法,如此处所述:

     if(ope.equals("+"))

==比较两个引用是否指向同一个内存位置,而equals()比较字符串内容。

关于java - parseInt 行错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18290526/

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