当前位置:  技术问答>java相关

不太明白线程控制中的yield(),请高手给小弟见解一下,最好带例子?

    来源: 互联网  发布时间:2015-03-07

    本文导语:  | Use the method Thread.yield() to give other threads of the same priority a chance to execute. If other threads at the same priority are runnable, yield places the calling thread into the runnable pool and allows another thread to run. If no...


|
Use the method Thread.yield() to give other threads of the same
priority a chance to execute. If other threads at the same priority are
runnable, yield places the calling thread into the runnable pool and
allows another thread to run. If no other threads are runnable at the
same priority, yield does nothing.

|
According to JDK1.2 document, he said,

yield
public static void yield()
Causes the currently executing thread object to temporarily pause and allow other threads to execute.

e.g,
Reference to 
-------------------------------------------------------------------------------
//: Daemons.java
// Daemonic behavior
import java.io.*;

class Daemon extends Thread {
  private static final int SIZE = 10;
  private Thread[] t = new Thread[SIZE];
  public Daemon() { 
    setDaemon(true);
    start();
  }
  public void run() {
    for(int i = 0; i 

    
 
 

您可能感兴趣的文章:

  • 刚接触多线程,几个问题不明白
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 在看SCJP中的GUI Thread中repaint()时卡壳了,不太明白,哪位可以给小弟讲讲啊?
  • 小弟一直弄不明白this这个关键字。
  • 小弟初学,请指教,我对数据封装不太明白!
  • 继续socket的问题,小弟还没明白,:( 多谢各位了。
  • 这几个是什么服务,不明白为什么一直开启?一直都没弄明白过
  • 请教大家!!!java如何实现多重继承?接口该如何使用?份数可以再加,只要我明白了
  • 一个问题,有点不明白!!!
  • linux crontab 设定老是想不明白。。。。
  • 有句话不明白,求解释
  • 关于终端的一些小问题,不明白。。。
  • Makefile中的一句不明白,关于shell中sed函数
  • 我在看一个GNU软件时发现有这么一句,不明白什么意思
  • 不明白seteuid()的作用
  • i=$(($i+1))。为什么i=$($i+1)就不行呢?不明白里面那层括号起什么作用。
  • 在init脚本中屡屡看到类似命令,不明白的说:mount -t sysfs /sys /sys
  • VMWare上装了个Fedora,但装不上VMWareTools,新手,不明白为什么
  • 总算明白gettext函数是怎么用的了!散分
  • 想了解LINUX一定能明白汇编语言吗?
  • 请问:什么是组合?看了THINGKING IN JAVA后,还是不是很明白
  • 我不是很明白,请帮忙!
  • method overriding 的意思我明白,但在中文里应该翻译成什么为好?
  • 关于字体的问题?实在是看不明白sun的api文档!!!!!!!!!!!!
  • 灌水贴子,有什么不明白到www.52jsp.com论坛看看
  • 不明白!


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3