第一次spring冲刺第9天

时间:2024-04-28 16:07:00

明天是这个阶段的最后一天了,今天讨论关于容错的方面,例如输入空白或其他字符等方面会出现的问题 ,部分代码如下:

public void checkout(int trueResult) {
String test = text.getText().toString();
if (test != null && test.length() > 0) {
result = Integer.parseInt(this.text.getText().toString());
if (result == trueResult) {
this.textViewtip.setText("答案正确!");
} else {
this.textViewtip.setText("错误,正确答案是:" + this.trueResult);
}

// 处理代码
} else { // 可以弹出警告
Toast.makeText(this, "输入不能为空!", Toast.LENGTH_LONG).show();
}

}