買票問題

託帕發表於2018-09-10
class Xc implements Runnable{

	public static  int chepiao=20;//static 所有物件共享100張票
	public static String a=new String("1");//字串隨意定義,定義在函式上邊

	//synchronized(修飾函式,,不需要字串,相當於預設是this讓它所管轄的程式碼部分,要麼全部執行完,要麼全部不執行
	public void run(){
		while(true){
			synchronized(a){//既可以修飾程式碼塊,又可以修飾函式   
				if(chepiao>0){
					System.out.println("第"+Thread.currentThread().getName()+"個車站正在賣第"+(21-chepiao)+"張車票");
					--chepiao;
				}
				else{
					break;
				}
			}
		}
	}
}
public class Test{
	public static void main(String[] args){
		Xc xc1=new Xc();
		Thread ee=new Thread(xc1);
		ee.start();

		Xc xc2=new Xc();
		Thread ff=new Thread(xc2);
		ff.start();
	}
}

class Xc extends Thread{

	public static  int chepiao=20;
	public static String a=new String("1");


	public void run(){
		while(true){
			synchronized(a){
				if(chepiao>0){
					System.out.println("第"+Thread.currentThread().getName()+"個車站正在賣第"+(21-chepiao)+"張車票");
					--chepiao;
				}
				else{
					break;
				}
			}
		}
	}
}
public class Test{
	public static void main(String[] args){
		Xc xc1=new Xc();
		xc1.start();

		Xc xc2=new Xc();
		xc2.start();
	}
}

相關文章