-3
我想檢查tempDouble
是否爲空,但我收到錯誤。我正在使用if (!tempDouble.isNaN())
,但我沒有得到結果。檢查double是否爲空
public Double tempDouble, tempDouble2;
buttonDec.setOnClickListener(
new Button.OnClickListener() {
public void onClick(View v) {
TextView output = (TextView) findViewById(R.id.editText);
if (output.getText().length() <= 0) {
}
else {
i = Integer.parseInt(output.getText().toString());
output.setText(i + ".");
if (!tempDouble.isNaN()) {
// check if tempDouble is empty
//tempDouble = Double.parseDouble(output.getText().toString());
}
else
tempDouble2=Double.parseDouble(output.getText().toString());
}
}
}
)
「tempDouble」在哪裏定義,你可以做一個'null'檢查嗎? –
你有什麼錯誤?你能在這裏寄出堆棧痕跡嗎? – Mike
你沒有得到結果...你得到了什麼結果? –