When does Java's Thread.sleep throw InterruptedException?

后端 未结 6 798
青春惊慌失措
青春惊慌失措 2020-11-27 13:32

When does Java\'s Thread.sleep throw InterruptedException? Is it safe to ignore it? I am not doing any multithreading. I just want to wait for a few seconds before retryi

6条回答
  •  难免孤独
    2020-11-27 13:48

    The Java Specialists newsletter (which I can unreservedly recommend) had an interesting article on this, and how to handle the InterruptedException. It's well worth reading and digesting.

提交回复
热议问题