Thread.sleep() SystemClock.sleep()
生活随笔
收集整理的這篇文章主要介紹了
Thread.sleep() SystemClock.sleep()
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Thread.sleep()是java提供的函數。在調用該函數的過程中可能會發生InterruptedException異常。
SystemClock.sleep()是android提供的函數。在調用該函數的過程中不會發生InterruptedException異常,中斷事件將要被延遲直到下一個中斷事件。
SystemClock.sleep(millis) is a utility function very similar to Thread.sleep(millis), but it ignores InterruptedException. Use this function for delays if you do not use Thread.interrupt(), as it will preserve the interrupted state of the thread.
轉載于:https://www.cnblogs.com/hjtdlx/p/3925018.html
總結
以上是生活随笔為你收集整理的Thread.sleep() SystemClock.sleep()的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 解决重写父类的方法且不会影响继承的子类的
- 下一篇: Spark编程指南