How do I make a delay in Java?

前端 未结 8 1396
Happy的楠姐
Happy的楠姐 2020-11-22 08:24

I am trying to do something in Java and I need something to wait / delay for an amount of seconds in a while loop.

while (true) {
    if (i == 3) {
        i         


        
8条回答
  •  渐次进展
    2020-11-22 09:02

    Use Thread.sleep(1000);

    1000 is the number of milliseconds that the program will pause.

    try
    {
        Thread.sleep(1000);
    }
    catch(InterruptedException ex)
    {
        Thread.currentThread().interrupt();
    }
    

提交回复
热议问题