Multi-Programming-17 Semaphore & CountDownLatch信号量和计数栓之间的关系

1. 信号量与计数栓Semaphore & CountdownLatch

关于该问题的Q&A主要来自此处,可以自行查看。

信号量:Semaphore is used to control the number of concurrent threads that are using a resource. That resource can be something like a file, or could be cpu by limiting the number of threads executing. The count on a semaphore can go up and down as different threads acquire() and release().
信号量是用来限制并发访问某一共享资源的线程的数量的。这里的共享资源可以比如是:一个文件,CPU等。信号量可以通过acquire和release函数变化。

计数栓:CountDownLatch is used to start a series of threads and then wait until all of them are complete (or until they call countDown() a given number of times).
计数栓是用来保证某个线程可以在其他一些线程完成之后开始执行的。

1.1 关于Semaphore的代码及执行结果。

package com.fqyuan._12semAndlatch;

import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Semaphore;

public class Main {
    public static void main(String[] args) throws InterruptedException {
        ExecutorService executor = Executors.newCachedThreadPool();
        // For semaphore test here:
        Semaphore semaphore = new Semaphore(3);
        TaskWithSemaphore task = new TaskWithSemaphore(semaphore);
        for (int i = 0; i < 10; i++)
            executor.submit(new Runnable() {

                @Override
                public void run() {
                    task.doWork();
                }
            });

        // For latch test here:
        // CountDownLatch latch = new CountDownLatch(3);
        // TaskWithLatch task1 = new TaskWithLatch("Network", 1000, latch);
        // TaskWithLatch task2 = new TaskWithLatch("DiskService", 2000, latch);
        // TaskWithLatch task3 = new TaskWithLatch("Battery", 2500, latch);
        // TaskWithLatch[] tasks = { task1, task2, task3 };
        // for (TaskWithLatch t : tasks)
        // executor.submit(new Runnable() {
        //
        // @Override
        // public void run() {
        // t.doWork();
        // }
        // });
        // // Cause current thread to wait until latch has counted to zero.
        // latch.await();
        executor.shutdown();
        // System.out.println("Main Thread work starts!");
    }
}

// Semaphore: used to control the number of the concurrent threads accessing
// sharing data.
class TaskWithSemaphore {
    private Semaphore semaphore;

    public TaskWithSemaphore(Semaphore semaphore) {
        this.semaphore = semaphore;
    }

    public void doWork() {
        try {
            semaphore.acquire();
            System.out.println(Thread.currentThread().getName() + " Running.");
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } finally {
            semaphore.release();
        }
    }
}

// CountDownLatch: used to start a series of threads and then waits until they
// are complete.
class TaskWithLatch {
    private String name;
    private int timeToRun;
    private CountDownLatch latch;

    public TaskWithLatch(String name, int time, CountDownLatch latch) {
        this.name = name;
        this.timeToRun = time;
        this.latch = latch;
    }

    public void doWork() {

        try {
            System.out.println(name + " preparing...");
            Thread.sleep(timeToRun);

        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        latch.countDown();
        System.out.println(name + " finished...");
    }
}
//Running result:
pool-1-thread-2 Running.
pool-1-thread-1 Running.
pool-1-thread-3 Running.
pool-1-thread-4 Running.
pool-1-thread-6 Running.
pool-1-thread-5 Running.
pool-1-thread-7 Running.
pool-1-thread-8 Running.
pool-1-thread-9 Running.
pool-1-thread-10 Running.

1.2. CountDownLatch 代码及执行结果

package com.fqyuan._12semAndlatch;

import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Semaphore;

public class Main {
    public static void main(String[] args) throws InterruptedException {
        ExecutorService executor = Executors.newCachedThreadPool();
        // For semaphore test here:
        // TaskWithSemaphore task = new TaskWithSemaphore();
        // for (int i = 0; i < 10; i++)
        // executor.submit(new Runnable() {
        //
        // @Override
        // public void run() {
        // task.doWork();
        // }
        // });

        // For latch test here:
        CountDownLatch latch = new CountDownLatch(3);
        TaskWithLatch task1 = new TaskWithLatch("Network", 1000, latch);
        TaskWithLatch task2 = new TaskWithLatch("DiskService", 2000, latch);
        TaskWithLatch task3 = new TaskWithLatch("Battery", 2500, latch);
        TaskWithLatch[] tasks = { task1, task2, task3 };
        for (TaskWithLatch t : tasks)
            executor.submit(new Runnable() {

                @Override
                public void run() {
                    t.doWork();
                }
            });
        // Cause current thread to wait until latch has counted to zero.
        latch.await();
        executor.shutdown();
        System.out.println("Main Thread work starts!");
    }
}

// Semaphore: used to control the number of the concurrent threads accessing
// sharing data.
class TaskWithSemaphore {
    private Semaphore semaphore = new Semaphore(3);

    public void doWork() {
        try {
            semaphore.acquire();
            System.out.println(Thread.currentThread().getName() + " Running.");
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } finally {
            semaphore.release();
        }
    }
}

// CountDownLatch: used to start a series of threads and then waits until they
// are complete.
class TaskWithLatch {
    private String name;
    private int timeToRun;
    private CountDownLatch latch;

    public TaskWithLatch(String name, int time, CountDownLatch latch) {
        this.name = name;
        this.timeToRun = time;
        this.latch = latch;
    }

    public void doWork() {

        try {
            System.out.println(name + " preparing...");
            Thread.sleep(timeToRun);

        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        latch.countDown();
        System.out.println(name + " finished...");
    }
}
//Running reuslt:
DiskService preparing...
Battery preparing...
Network preparing...
Network finished...
DiskService finished...
Battery finished...
Main Thread work starts!

2. 计数栓与循环障碍CountDownLatch & CyclicBarrier

关于该问题的Q&A主要来自此处stackoverflow,可以自行查看。

主要有3点区别:
1. java.util.concurrent.CyclicBarrier.CyclicBarrier(int parties, Runnable barrierAction), CyclicBarrier构造函数可以传入一个Runnable的任务,该任务会在barrier满足之后运行。
2. CountDownLatch->NumOfCalls;
CyclicBarrier->NumOfThreads;
当我们使用CyclicBarrier时,假设我们指定了触发障碍线程数量为5时,我们必须至少有5个线程调用barrier.await();
当我们使用CountDownLatch时,我们指定了调用countDown()函数的次数,一旦达到该次数,则所有的等待线程将被释放。这意味着我们可以只使用一个线程完成CountDownLatch的功能。
3. 一旦barrier达到时,CountDownLatch会被自动reset!该部分代码如下:

import java.util.concurrent.BrokenBarrierException;
import java.util.concurrent.CyclicBarrier;

public class CyclicBarrierCycles {

    static CyclicBarrier barrier;

    public static void main(String[] args) throws InterruptedException {
        barrier = new CyclicBarrier(3); 

        new Worker().start();
        Thread.sleep(1000);
        new Worker().start();
        Thread.sleep(1000);
        new Worker().start();
        Thread.sleep(1000);

        System.out.println("Barrier automatically resets.");

        new Worker().start();
        Thread.sleep(1000);
        new Worker().start();
        Thread.sleep(1000);
        new Worker().start();
    }

}


class Worker extends Thread {
    @Override
    public void run() {
        try {
            CyclicBarrierCycles.barrier.await();
            System.out.println("Let's play.");
        } catch (InterruptedException e) {
            e.printStackTrace();
        } catch (BrokenBarrierException e) {
            e.printStackTrace();
        }
    }
}

关于Barrier的Demo:

package com.fqyuan._13cyclicBarrier;

import java.util.concurrent.BrokenBarrierException;
import java.util.concurrent.CyclicBarrier;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;

public class BarrierTest {

    public static void main(String[] args) throws InterruptedException {
        CyclicBarrier barrier = new CyclicBarrier(4, new Runnable() {

            @Override
            public void run() {
                System.out.println("Termination condiotn fulfilled!");
            }
        });
        BarrierWork barrierWork1 = new BarrierWork(barrier, "East", 1000);
        BarrierWork barrierWork2 = new BarrierWork(barrier, "South", 1500);
        BarrierWork barrierWork3 = new BarrierWork(barrier, "West", 2000);
        BarrierWork barrierWork4 = new BarrierWork(barrier, "North", 3000);
        ExecutorService executor = Executors.newCachedThreadPool();
        executor.submit(new Runnable() {
            @Override
            public void run() {
                try {
                    barrierWork1.doWork();
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (BrokenBarrierException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        });
        executor.submit(new Runnable() {
            @Override
            public void run() {
                try {
                    barrierWork2.doWork();
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (BrokenBarrierException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        });
        executor.submit(new Runnable() {
            @Override
            public void run() {
                try {
                    barrierWork3.doWork();
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (BrokenBarrierException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        });
        executor.submit(new Runnable() {
            @Override
            public void run() {
                try {
                    barrierWork4.doWork();
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (BrokenBarrierException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        });
        executor.awaitTermination(5, TimeUnit.SECONDS);
        executor.shutdown();
    }

}

class BarrierWork {
    private CyclicBarrier barrier;
    private String name;
    private int time;

    public BarrierWork(CyclicBarrier barrier, String name, int time) {
        this.barrier = barrier;
        this.name = name;
        this.time = time;
    }

    public void doWork() throws InterruptedException, BrokenBarrierException {
        System.out.println("Collecting data in " + name + " with " + time + "ms.");
        Thread.sleep(time);

        barrier.await();
        System.out.println(name + " finished!");

    }
}

3. 用countdownLatch 实现的顺序执行程序

package com.fqyuan.latch_sequence;

import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

public class LatchTest {

    public static void main(String[] args) throws InterruptedException {
        CountDownLatch latch1 = new CountDownLatch(1);
        CountDownLatch latch2 = new CountDownLatch(1);
        CountDownLatch latch3 = new CountDownLatch(1);
        ExecutorService executor = Executors.newCachedThreadPool();
        executor.execute(new Runnable() {

            @Override
            public void run() {
                new Latch1(latch1).doWork1();
            }
        });
        latch1.await();
        executor.execute(new Runnable() {

            @Override
            public void run() {
                new Latch2(latch2).doWork2();
            }
        });
        latch2.await();
        executor.execute(new Runnable() {

            @Override
            public void run() {
                new Latch3(latch3).doWork3();
            }
        });
        latch3.await();
        executor.shutdown();
        System.out.println("The main thread starts!");
    }

}

class Latch1 {
    private CountDownLatch latch;

    public Latch1(CountDownLatch latch) {
        this.latch = latch;
    }

    public void doWork1() {
        System.out.println("Preparing with latch1...");
        try {
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        latch.countDown();
    }
}

class Latch2 {
    private CountDownLatch latch;

    public Latch2(CountDownLatch latch) {
        this.latch = latch;
    }

    public void doWork2() {
        System.out.println("Preparing with latch2...");
        try {
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        latch.countDown();
    }
}

class Latch3 {
    private CountDownLatch latch;

    public Latch3(CountDownLatch latch) {
        this.latch = latch;
    }

    public void doWork3() {
        System.out.println("Preparing with latch3...");
        try {
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        latch.countDown();
    }
}
//Running result:
Preparing with latch1...
Preparing with latch2...
Preparing with latch3...
The main thread starts!

4. 个人见解

  1. 信号量控制了访问共享资源的线程的数量;
  2. 计数栓用来使得一些线程在另一些线程完成之后进行,控制线程执行顺序;
  3. 循环障碍是用来等待其他线程完成–latches are waiting for events; barrier are for waiting for other threads.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值