问题
解决:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
//SemaphoreTest.java //javac SemaphoreTest.java && java SemaphoreTest import java.util.concurrent.*; import java.util.*; class SemaphoreTest{ public static void main(String[] argv){ Semaphore s = new Semaphore(2); for(int i=0;i<10;i++){ Thread t = new Thread(()->{ for(int j = 0 ;j<3; ++j){ try{ s.acquire(); System.out.println(Thread.currentThread().getName()+" j : "+j); Thread.sleep(1000); s.release(); }catch(Exception e){} } }); t.setName("ppthread"+i); t.start(); } System.out.println("main end"); } } |
参考: