gpt4 book ai didi

java - 即使抛出 thread.sleep 异常后也会出错

转载 作者:行者123 更新时间:2023-12-02 08:55:24 27 4
gpt4 key购买 nike

我试图让我的线程 hibernate 并让该方法抛出 InterruptedException,但它仍然给出错误“未处理的异常”


@Before
public void setUp() throws InterruptedException{

simulatorList.forEach(simulation -> {
....
Thread.sleep(1000*60*1);
//giving error here

...
});
}

最佳答案

因为您在 foreach 中调用 Thread.sleep,所以下面将解决您的问题:

public void setUp() throws InterruptedException {
List<String> simulatorList = new ArrayList<>();
for (String s : simulatorList) {
Thread.sleep(1000 * 60 * 1);
}
}

关于java - 即使抛出 thread.sleep 异常后也会出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60522601/

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