生活随笔
收集整理的這篇文章主要介紹了
Semaphore
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
SemaphoreDemo.java
package thread;import java.util.concurrent.Semaphore;
import java.util.concurrent.TimeUnit;public class SemaphoreDemo {public static void main(String[] args) {Semaphore semaphore=new Semaphore(3); // 模擬3個停車位for (int i = 1; i <=6 ; i++) { // 模擬6部汽車位new Thread(()->{try {semaphore.acquire();System.out.println(Thread.currentThread().getName()+"\t搶到車位");try{ TimeUnit.SECONDS.sleep(3); }catch (Exception e){ e.printStackTrace(); }System.out.println(Thread.currentThread().getName()+"\t停車3秒后離開車位");} catch (InterruptedException e) {e.printStackTrace();} finally {semaphore.release();}},String.valueOf(i)).start();}}
}
總結
以上是生活随笔為你收集整理的Semaphore的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。