zoukankan      html  css  js  c++  java
  • H2O

    import java.util.*;
    import java.util.concurrent.locks.*;
    public class H2O {
    	private int HCount = 0;
    	private int OCount = 0;
    	private Lock lock = new ReentrantLock();
    	private Condition condH = lock.newCondition();
    	private Condition condO = lock.newCondition();
    	
    	
    	public void H() throws InterruptedException{
    		lock.lock();
    		try {
    			HCount++;
    			if (HCount >= 2 && OCount >= 1) {
    				System.out.println("2 H and 1 O consumed in H()");
    				HCount -= 2;
    				OCount -= 1;
    				condH.signal();
    				condO.signal();
    			} else {
    				condH.await();
    			}
    		} finally {
    			lock.unlock();
    		}
    	}
    	
    	public void O() throws InterruptedException{
    		lock.lock();
    		try {
    			OCount++;
    			if (HCount >= 2 && OCount >= 1) {
    				System.out.println("2 H and 1 O consumed in O()");
    				HCount -= 2;
    				OCount -= 1;
    				condH.signal();
    				condH.signal();
    			} else {
    				condO.await();
    			}
    		} finally {
    			lock.unlock();
    		}
    	}
    	
    	  public static void main(String[] args) {
    	        int n = 3;
    	        final H2O h2o = new H2O();
    	        Thread[] threads = new Thread[n];
    	        for (int i=0; i<n; i++) {
    	            final int id = i;
    	            threads[i] = new Thread(new Runnable() {
    	                @Override
    	                public void run() {
    	                    for (int j=0; j<3; j++) {
    	                        if (id %3 == 0) {
    	                            try {
    	                            	System.out.println(String.format("Producing an O in thread %d", id));
    	                                h2o.O();
    	                            } catch (InterruptedException e) {
    	                                System.out.println(String.format("Thread %d is interrupted for O().", id));
    	                            }
    	                        } else {
    	                            try {
    	                            	System.out.println(String.format("Producing an H in thread %d", id));
    	                                h2o.H();
    	                                
    	                            } catch (InterruptedException e) {
    	                                System.out.println(String.format("Thread %d is interrupted for H().", id));
    	                            }
    	                        }
    	                    }
    	                }
    	            });
    	        }
    	        for (Thread thread : threads) {
    	            thread.start();
    	        }
    	    }
    }
    

      

  • 相关阅读:
    Zookeeper全解析——Paxos作为灵魂(转)
    你真的会开发测试框架?
    使用Hypothesis生成测试数据
    poium测试库之JavaScript API封装原理
    PHP接口自动化测试框架实现
    Web项目如何做单元测试
    如何在Appium中使用AI定位
    我写了个项目,帮你学习HTTP接口测试!
    性能测试浅谈
    Web测试框架SeleniumBase
  • 原文地址:https://www.cnblogs.com/apanda009/p/7960529.html
Copyright © 2011-2022 走看看