java线程池模拟并发


public class CountDownLatchTest1 implements Runnable{  
    final AtomicInteger number = new AtomicInteger();  
    volatile boolean bol = false;  
  
    @Override  
    public void run() {  
        System.out.println(number.getAndIncrement());  
        synchronized (this) {  
            try {  
                if (!bol) {  
                    System.out.println(bol);  
                    bol = true;  
                    Thread.sleep(10000);  
                }  
            } catch (InterruptedException e) {  
                e.printStackTrace();  
            }  
            System.out.println("并发数量为" + number.intValue());  
        }  
  
    }  
  
    public static void main(String[] args) {  
        ExecutorService pool = Executors. newCachedThreadPool();  
        CountDownLatchTest1 test = new CountDownLatchTest1();  
        for (int i=0;i<10;i++) {  
            pool.execute(test);  
        }  
    }  
}  

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM