关于线程同步问题

  class SalesLady {
   
int memontoes, five, ten;

   
public synchronized String ruleForSale( int num, int money) {
        String s
= null ;
       
if (memontoes == 0 )
           
return " 对不起,已经售完 " ;
       
if (money == 5 ) {
            memontoes
-- ;
            five
++ ;
            s
= " 给你票, " + " 你的钱正好。 " ;
        }
else if (money == 10 ) {
           
while (five < 1 ) {
               
try {
                    System.out.println(
"" + num + " 号顾客用10元购票,请等待 " );
                    wait();
                }
catch (InterruptedException e) {
                }
            }
            memontoes
-- ;
            five
-= 1 ;
            ten
++ ;
            s
= " 给你票, " + " 找你5元。 " ;
        }
        notifyAll();
       
return s;
    }

    SalesLady(
int m, int f, int t) {
        memontoes
= m;
        five
= f;
        ten
= t;
    }
}

public class 八_5 extends java.applet.Applet {
   
static SalesLady saleslady = new SalesLady( 14 , 0 , 0 );
   
public void start() {
       
int moneies[] = { 10 , 10 , 5 , 10 , 5 , 10 , 5 , 5 , 10 , 5 , 10 , 5 , 5 , 10 , 5 };
        Thread[] aThreadArray
= new Thread[ 20 ];
        System.out.println(
" 现在开始售票: " );
       
for ( int i = 0 ; i < moneies.length; i ++ ) {
            aThreadArray[i]
= new Thread( new CustomerClass(i + 1 , moneies[i])); aThreadArray[i].start(); } WhileLoop: while ( true ) {
           
for ( int i = 0 ; i < moneies.length; i ++ )
               
if (aThreadArray[i].isAlive())
                   
continue WhileLoop;
           
break ;
        }
        System.out.println(
" 票已售完 " );
    }
}

class CustomerClass implements Runnable {
   
int num, money;

   
public void run() {
       
try {
            Thread.sleep(
10 );
        }
       
catch (InterruptedException e) {
        }
        System.out.println(
" 我是 " + num + " 号顾客,用 " + money + " 元购票,售票员说: "
               
+ 八_5.saleslady.ruleForSale(num, money));
    }

    CustomerClass(
int n, int m) {
        num
= n;
        money
= m;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值