zoukankan      html  css  js  c++  java
  • Thread.sleep


    Thread.sleep()

    1. The current thread changes state from Running to Waiting/Blocked as shown in the diagram below.
    2. Any other thread with reference to the thread currently sleeping (say t) can interrupt it calling t.interrupt()
      • the call to sleep has to be encapsulated to catch the checked exception of InterruptedException
    3. After the time period for which the thread was set to sleep it goes to the Runnable state andmight not run immediately! It has to wait for the Thread Scheduler to schedule it for its time slice.

    Thread.yield()

    1. Calling it may cause the Thread Scheduler to move the current thread from Running toRunnable state and execute another same priority thread which was in Runnable state. This transition of state takes place only if there is some other thread of same priority in Runnable state. Hence the no guarantee that the thread will stop execution as the criteria of another same priority thread might not be met.
    2. .yield() is much based on the Thread Priorities concept. (All thread are assigned priorities and when a thread of higher priority is in Runnable state it ususally preempts / stops execution of lower priority threads depending on implementation of ThreadScheduler.)

    enter image description hereNote:

    • both Thread.sleep() and Thread.yield() are static functions and affect the current thread executing it.
    • both the functions will not let go the synchronized locks they hold.
  • 相关阅读:
    react和vue——比较
    CSS 网格布局学习
    Spark 获取指定分区内的数据
    Spark常见算子
    使用 python 批量插入 hive
    Linux 获取在使用的网卡名称,信息
    Linux 修改成静态IP 设置网关 DNS
    Linux shell 使用脚本 修改文本中的 key value
    Linux 上的一些有用的shell脚本
    使用canda 安装 pyhdfs 实现文件上传到 HDFS
  • 原文地址:https://www.cnblogs.com/yunxiblog/p/5215668.html
Copyright © 2011-2022 走看看