A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 825176857 中级黑马   /  2015-7-13 17:42  /  200 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. package thread;

  2. /**
  3. * 多线程模拟一个存 一个取,存完通知另一个来取
  4. */
  5. public class ImitateDepositDrawTheadTest {
  6.      
  7.     public static void main(String[] args) {
  8.          
  9.         final DepositOrWithdrawBusiness business = new DepositOrWithdrawBusiness(1000);
  10.         new Thread(new Runnable(){
  11.             @Override
  12.             public void run() {
  13.                 while(true){
  14.                     business.deposit();
  15.                 }
  16.             }
  17.         }).start();
  18.         new Thread(new Runnable(){
  19.             @Override
  20.             public void run() {
  21.                 while(true){
  22.                     business.withdraw();
  23.                 }
  24.             }
  25.         }).start();
  26.          
  27.          
  28.     }
  29. }
  30. class DepositOrWithdrawBusiness{
  31.     int balance = 1000;
  32.     public DepositOrWithdrawBusiness(int balance){
  33.         this.balance = balance;
  34.     }
  35.     boolean isWithdraw = false;
  36.     public synchronized void deposit(){
  37.         if(isWithdraw){
  38.             try {
  39.                 this.wait();
  40.             } catch (InterruptedException e) {
  41.                 e.printStackTrace();
  42.             }
  43.         }
  44.         balance = balance+300;
  45.         System.out.println(Thread.currentThread().getName()+ " deposit $300,now balance:" + balance);
  46.         isWithdraw=true;
  47.         this.notify();
  48.          
  49.     }
  50.     public synchronized void withdraw(){
  51.         if(!isWithdraw){
  52.             try {
  53.                 this.wait();
  54.             } catch (InterruptedException e) {
  55.                 e.printStackTrace();
  56.             }
  57.         }
  58.         balance = balance-300;
  59.         System.out.println(Thread.currentThread().getName()+ " withdraw $300,now balance:" + balance);
  60.         isWithdraw=false;
  61.         this.notify();
  62.     }
  63. }
复制代码

2 个回复

倒序浏览
学习了,代码很清楚,一目了然
回复 使用道具 举报
不错不错。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马