In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
怎样进行Java线程控制权源代码的深入探讨,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
Java线程控制权的问题十分重要,我们在不断的学习中需要不断的注意相关的问题。下面我们就来看看在源代码中Java线程控制权式如何体现的。当wait的时候其实就是已经放出了线程的控制权,所以one可以运行。one运行时调用notify后又唤醒了two线程所以打印顺序才是:
wait
sleep
wake up
我觉得我解释的已经很清楚了。wait被调用的时候放弃锁,而控制线程是否能使用内容的关键就在于锁,wait并不是thread的内容,而来自于object。你可以这样来理解wait,我wait下就把接力棒交出去了,我当前的这个线程就暂停运行,记住是当前的线程。然后当我交出的接力棒已经又回到我手中的时候,也就是说其他的线程已经完成了任务。这个时候我拿到接力棒继续奔跑。
有时候你应该把问题简单化,建议你看看thinking in java第四版,我明白你是想观察阻塞的出现,你可以将one。start放到two。start的上边就会明白什么意思了
package test; import java.util.LinkedList; public class Test_2_A2 { public static void main(String[] args) { SubTreadOne one = new SubTreadOne(); SubTreadTwo two = new SubTreadTwo(one); two.start(); try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } one.start(); } } class SubTreadOne extends Thread { public SubTreadOne() { } public void run() { try { System.out.println("sleep"); Thread.sleep(3000); synchronized (this) { this.notifyAll(); } }catch (InterruptedException e) { e.printStackTrace(); } } } class SubTreadTwo extends Thread { SubTreadOne one; public SubTreadTwo(SubTreadOne one) { this.one = one; } public SubTreadTwo() { } public void run() { try { synchronized (one) { System.out.println("wait"); one.wait(); System.out.println("wake up"); } } catch (InterruptedException e) { e.printStackTrace(); } } }
以上就是对Java线程控制权有关代码的详细介绍。
看完上述内容,你们掌握怎样进行Java线程控制权源代码的深入探讨的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注行业资讯频道,感谢各位的阅读!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.