gpt4 book ai didi

java - if(pause == null) { 不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 11:29:05 24 4
gpt4 key购买 nike

pausenull 时,我使用 if(pause == null) 做一些事情。但是我得到了错误

运算符 == 未定义参数类型 long,null

这是代码,

public class Timer extends CountDownTimer {
long pause = (Long) null;

public Timer(long startTime, long interval) {
super(startTime, interval);
}

@Override
public void onTick(long millisUntilFinished) {
content.setText("Tijd over: " + millisUntilFinished / 100);
}

public void onPause(long millisUntilFinished) {
if(pause == null) {
pause = millisUntilFinished;
content.setText("Tijd over: " + millisUntilFinished / 100);
this.cancel();
}
else {
this.start();
}
}

@Override
public void onFinish() {
content.setText("Tijd is op!");
}
}

本类(class)尚未完成,因此请忽略其余代码。

最佳答案

long pause = (Long) null;

应该是

Long pause = null;
^

long原始类型,但Longlong 对象.

您可以使用 sentinel 值而不是将其包装为对象。

long pause = -1;
...
if(pause == -1 ) {
//do something
}

关于java - if(pause == null) { 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7938057/

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