gpt4 book ai didi

Java - while循环检查状态并退出

转载 作者:行者123 更新时间:2023-12-01 10:40:47 25 4
gpt4 key购买 nike

早上好,

我在使用 while 循环时遇到问题。让我解释。我必须管理带有红外传感器的灯。没问题。它的工作原理是这样的:如果注意到有运动,灯就会亮起,如果没有注意到运动,就会开始超时,之后,灯就会熄灭,但是如果在此超时期间注意到有新的运动,则超时必须停止,“重置”循环。

如果没有“BUT”条件,使用 Tread.sleep 很容易管理,但我尝试使用 while 循环来完成它,但没有结果......

这就是我所拥有的,一个无限循环,每秒检查一次传感器状态

while (true) {
try {
if (sensore.getStatoSensore() == 1) { //movement noticed
lampada.accendi(); //light on

} else if (sensore.getStatoSensore() == 0) { //no movement noticed
long start = System.currentTimeMillis();
long end = start + (timeoutSpegnimento * 1000); //10 seconds before lights shut down
boolean movement = false;
while (System.currentTimeMillis() < end) {
logger.debug("Shutdown timer started");
if (sensore.getStatoSensore() == 1) {
movement = true;
lampada.accendi(); //light up
logger.debug("Movement noticed - movement=" + movement);

} else {
movement = false;
}

Thread.sleep(500);
}
if (!movement) {
lampada.spegni(); //light off
}

}
} catch (Throwable e1) {
// TODO Auto-generated catch block
logger.error(e1);
}
try {

Thread.sleep(intervallo * 1000); //do the sensor check once a second
} catch (InterruptedException e) {
// TODO Auto-generated catch block
logger.error(e);
}
}

我遇到超时循环问题 while (System.currentTimeMillis() < end)在我的想法中,它应该以这种方式工作:如果(sensore.getStatoSensore() == 0)调用 while 循环超时。在此期间,如果没有注意到新的移动,movement是假的,所以 lampada.spegni();叫做。这部分效果很好。

但是 while 循环内的 if 条件

if (sensore.getStatoSensore() == 1) {
movement = true;
lampada.accendi(); //light up
logger.debug("Movement noticed - movement=" + movement);

仅在第一次时有效,比最初的 while(true) 循环更困惑,总之,我无法再获得正常行为。我希望这能更好地解释我正在寻找的内容

最佳答案

当您在等待超时时注意到移动时,您并没有重置超时,就像您在描述中所说的那样。

请勿将在灯尚未熄灭时等待第一次移动与等待超时到期结合起来。它们是完全不同的东西,你不应该尝试将其放入一个循环中,即使你设法让它工作。

最好它们应该采用不同的、命名良好的方法。

我已经第一次尝试清理你的代码,并且如果灯亮着的时候有移动,也会重置超时。那应该对你有帮助。

private boolean hasMovement() {
return sensore.getStatoSensore() == 1;
}

private static void waitSecond() {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
}

public void run() {
while (true) {
// Wait until movement noticed
while (!hasMovement()) {
waitSecond();
}
// Movement noticed, turn light on
lampada.accendi();

long lastMovementTime = System.currentTimeMillis();
// Wait until 10 seconds from last movement
while (System.currentTimeMillis() < lastMovementTime + (timeoutSpegnimento * 1000)) {
if (hasMovement()) {
lastMovementTime = System.currentTimeMillis();
}
waitSecond();
}

// Turn light off
lampada.spegni();
}

关于Java - while循环检查状态并退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34413080/

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