How do I make a delay in Java?

前端 未结 8 1408
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 08:59

    You need to use the Thread.sleep() call.

    More info here: http://docs.oracle.com/javase/tutorial/essential/concurrency/sleep.html

提交回复
热议问题