Latch 的相关笔记
背景介绍 :
在java多线程中 , 当用到相关的Worker Thread模式的时候,启动多的Worker 线程执行方法doWork(). 伪代码如下:
for (int i = 0; i < N; ++i)
new Thread(new Worker()).start();
doSomething();
这个时候,这些后台线程将会立刻与soSomething()方法并行执行执行相关的run()方法. 现在需要一个解决方案,目的是让这些工作者线程在执行了doSomething()以后才开始执行相关的线程run()方法. 解决的方案有多种,仁者见仁,下面介绍的是用Latch的方式来完成线程的调度.
准备环境 :
下载EDU.oswego.cs.dl.util.concurrent相关的jar包以及源代码;
前提介绍 :
使用Latch的时候,可以先看一下相关的源代码. Latch的源代码并不多,实现了Sync接口,方法有三个,
并且是线程安全的. 下面逐一介绍 :
(1)acquire()方法: 此方法中,如果latched_变量(Latch的实例变量,boolean)为false, 就wait();这里多说一句,也算给自己提个醒, wait()会释放掉this锁并进入this的的等待区,等待notify()或者notifyAll()使之"醒来",但是醒来以后要重新获取this锁,并不是马上就能够执行的.
(2)attempt(long msecs):这个方法很有趣,仔细看源代码,这个方法并不是先睡上个msecs长的时间,而是将会首先判断是否latched_变量是否为ture,是就return ture表示可以进入临界区.不是的话将会进入for(;;)无限循环, 在循环中,首先wait(msecs). 特别注意,wait(msecs)并不是就一定要等待msecs时间,JDK 对此方法作出的解释是 :
此方法导致当前线程(称之为 T)将其自身放置在对象的等待集中,然后放弃此对象上的所有同步要求。出于线程调度目的,线程 T 被禁用,且处于休眠状态,直到发生以下四种情况之一:
- 其他某个线程调用此对象的 notify 方法,并且线程 T 碰巧被任选为被唤醒的线程。
- 其他某个线程调用此对象的 notifyAll 方法。
-
其他某个线程
中断
线程 T。 - 已经到达指定的实际时间。但是,如果 timeout 为零,则不考虑实际时间,该线程将一直等待,直到获得通知。
然后,从对象的等待集中删除线程 T,并重新进行线程调度。然后,该线程以常规方式与其他线程竞争,以获得在该对象上同步的权利;一旦获得对该对象的控制权,该对象上的所有其同步声明都将被还原到以前的状态 - 这就是调用 wait 方法时的情况。然后,线程 T 从 wait 方法的调用中返回。所以,从 wait 方法返回时,该对象和线程 T 的同步状态与调用 wait 方法时的情况完全相同。
明白了这一点,也许就不难理解为什么wait(smsecs)时间后还要用 :waitTime = msecs - (System.currentTimeMillis() - start);这样的语句判断是否超时.
(3) release() :这个方法将标志位latched_设置为ture,并进行notify操作.
运行机理 :
想想一下,出事状况下(Fatch中的标志位_latched初始值为false)当多个线程调用acquire()的时候,因为标志位为false,那么将集体进入等待区. 当外界调用此Fatch对象的release()方法时候,由于notifyAll()并且将标志位设置为ture的原因,等待区中的线程集体排着队来“通过检查门口”并进行后续操作. 这样就能达到问题需要解决的目标;
下面是在Latch类中的实例代码,我将之粘贴出来以保证Blog的完整性 :
class Worker implements Runnable {
* private final Latch startSignal;
* Worker(Latch l) { startSignal = l; }
* public void run() {
* startSignal.acquire();
* doWork();
* }
* void doWork() { ... }
* }
*
* class Driver { // ...
* void main() {
* Latch go = new Latch();
* for (int i = 0; i < N; ++i) // make threads
* new Thread(new Worker(go)).start();
* doSomethingElse(); // don't let run yet
* go.release(); // let all threads proceed
* }
* }
2024年5月18日 19:00
Wow that was strange. I just wrote an extremely long comment but after I clicked submit my comment didn’t show up. Grrrr… well I’m not writing all that over again. Anyway, just wanted to say superb blog!|
2024年7月08日 13:48
Composed of 20 clinically tested components known for enhancing blood circulation, ZenCortex's formula promotes inner ear well-being. Each ingredient is meticulously selected to ensure the effectiveness of the dietary supplement in bolstering auditory function.
2024年7月08日 13:48
thaibaccarat dot com is the best website to study casino games : like baccarat, poker, blackjack and roulette casino
2024年7月08日 13:49
This web site is usually a walk-through for all of the information it suited you in regards to this and didn’t know who to question. Glimpse here, and you’ll definitely discover it.
2024年7月08日 13:49
I’d should talk to you here. Which is not some thing I do! I quite like reading a post which will make people believe. Also, many thanks permitting me to comment!
2024年7月08日 13:50
Offering redid, start to finish administrations, JWLogistics upgrades effectiveness, dependability, and consumer loyalty across a scope of enterprises. With a solid accentuation on development and administration greatness, JWLogistics guarantees consistent, on-time conveyances and upgraded inventory network tasks, assisting organizations with keeping an upper hand and really address their calculated difficulties.
2024年7月08日 13:50
I gotta bookmark this website it seems very useful very helpful
2024年7月08日 13:51
Gain typically major outstanding things -- you should know dozens of dishes inside:
2024年7月08日 13:52
This is exactly why it is actually better which you can related exploration well before delivering. It will be possible to publish bigger report using this method.
2024年7月08日 13:52
To be a Rookie, My business is for good researching on the net intended for articles or blog posts which might be connected with assistance to everyone. Appreciate it.
2024年7月08日 13:52
Thank you for the auspicious writeup. It in reality used to be a leisure account it. Look advanced to far delivered agreeable from you! However, how can we keep up a correspondence?
2024年7月08日 13:53
This is my first time visit here. From the tons of comments on your articles,I guess I am not only one having all the enjoyment right here!
2024年7月08日 13:53
An incredible article you write, very very interesting and informative ... I hope you will keep writing articles as good as this, so I gained extensive insight ... thanks.!!! Feel free to visit my website
2024年7月08日 13:54
Can I say what relief to find someone who really knows what theyre discussing on the net. You definitely have learned to bring a difficulty to light making it important. The diet should look at this and understand why side on the story. I cant believe youre less common simply because you definitely possess the gift.
2024年7月08日 13:54
It appears to hold potential, I remain somewhat skeptical at this point. I intend to explore it further and reach a conclusion based on my own evaluation.
2024年7月08日 14:43
I do accept as true with all of the ideas you’ve offered on your post. They are very convincing and will certainly work. Nonetheless, the posts are too short for beginners. Could you please prolong them a little from next time? Thanks for the post.
2024年7月08日 15:40
Hi, after reading this remarkable piece of writing i am as well happy to share my experience here with friends. This is a very interesting article. Please, share more like this! Feel free to visit my website; I bookmark this site and will track down your posts often from now on. Much obliged once more
2024年7月08日 16:13
You make so many great points here that I read your article a couple of times. Your views are in accordance with my own for the most part. This is great content for your readers.I bookmark this site and will track down your posts often from now on. Much obliged once more
2024年7月08日 16:16
The next occasion I read a weblog, I really hope which it doesnt disappoint me around that one. I am talking about, I know it was my solution to read, but I really thought youd have some thing intriguing to express. All I hear is actually a bunch of whining about something that you could fix when you werent too busy in search of attention.
2024年7月08日 16:56
I prefer entirely superb tactics -- you'll see these utilizing:
2024年7月08日 17:28
Renew is an exclusive dietary supplement, backed by patents, designed to purify the liver and burn liver fat. Powered by natural ingredients, including Mediterranean plants and super nutrients, it effectively addresses the root cause of stubborn belly fat.
2024年7月08日 18:24
elcome to Replica Watch TR, your premier destination for the finest replica watches available online.
2024年7月08日 18:45
Discover the pinnacle of research excellence with Direct Peptides, your trusted supplier of high-quality peptides boasting 99% purity. Experience seamless, fast global delivery and elevate your research to new heights.
2024年7月08日 19:02
SFlix - the ultimate online movie streaming website that brings the magic of cinema to your fingertips. With a vast and diverse database, as well as a multitude of exciting features, SFlix offers an unparalleled movie-watching experience for film enthusiasts worldwide.
2024年7月08日 19:35
Your blog is too much amazing. I have found with ease what I was looking. Moreover, the content quality is awesome. Thanks for the nudge!
2024年7月08日 19:53
Your blog is a treasure trove of knowledge! The importance of the topic you chose, coupled with your fresh perspective, adds a unique flavor to your content. It's always a pleasure to dive into your posts.
2024年7月08日 20:15
The next occasion I read a weblog, I really hope which it doesnt disappoint me around that one. I am talking about, I know it was my solution to read, but I really thought youd have some thing intriguing to express. All I hear is actually a bunch of whining about something that you could fix when you werent too busy in search of attention.
2024年7月08日 21:21
Your blog is a treasure trove of knowledge! The importance of the topic you chose, coupled with your fresh perspective, adds a unique flavor to your content. It's always a pleasure to dive into your posts.
2024年7月08日 21:58
Your blog is a treasure trove of knowledge! The importance of the topic you chose, coupled with your fresh perspective, adds a unique flavor to your content. It's always a pleasure to dive into your posts.
2024年7月08日 22:16
This is exactly why it is actually better which you can related exploration well before delivering. It will be possible to publish bigger report using this method.