gpt4 book ai didi

java - 超时时等待无限时间

转载 作者:行者123 更新时间:2023-12-03 07:19:56 25 4
gpt4 key购买 nike

我有一个wait(timeout)的测试代码。

public static void main(String[] args) throws Exception
{
Runnable r = new Runnable()
{

public void run()
{
while (true)
{
int random = (int)(Math.random() * 10);

synchronized(this)
{
try
{
wait(random);
}
catch (InterruptedException e)
{
e.printStackTrace();
}
}
System.out.println(random);
}
}
};

new Thread(r).start();
}

但是,这似乎无法正常工作,理想情况下它应该等待random方法给出的一定时间并打印它。但每次打印几个值(随机次数)后就会停止。

无法确定问题所在。

最佳答案

您问题的关键在于wait的java文档,其说明如下:-

The specified amount of real time has elapsed, more or less. If timeout is zero, however, then real time is not taken into consideration and the thread simply waits until notified.

因此,如果random返回0,它将进入无限等待直到收到通知,这显然不会在您的代码中发生。

最好添加 if 检查 random == 0

关于java - 超时时等待无限时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24169505/

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