zoukankan      html  css  js  c++  java
  • 多线程练习

    package com.qf.work;
    /**
     *  张三和妻子各拥有一张银行卡和存折,可以对同一个银行账户进行存取款的操作,请使用多线程及同步方法模拟张三和妻子同时取款的过程。
        要求使用同步方法和同步代码块两种方式实现
        分析
        定义Account类表示银行帐户
        定义两个线程分别实现张三和妻子取款的操作
     */
    
    public class Work4 {
        public static void main(String[] args) {
            Account account = new Account();
            
            SaveMoney saveMoney = new SaveMoney(account);
            TakeMoney takeMoney = new TakeMoney(account);
            
            Thread t0 = new Thread(saveMoney);
            Thread t1 = new Thread(takeMoney);
            
            t0.start();
            t1.start();
            
        }
    
    }
    
    class Account{
        int sum = 100;
        
        public synchronized void saveMoney() {
            sum += 10;
            System.out.println(Thread.currentThread().getName() +" 存款后:"+ sum);
            
        }
        public synchronized void takeMoney() {
            if(sum > 0) {
                sum -= 1;
                System.out.println(Thread.currentThread().getName() +"取款后"+ sum);
            }
        }
    }
    
    class SaveMoney implements Runnable{
        Account account;
        int i = 1;
        
        public SaveMoney(Account account) {
            this.account = account;
        }
        @Override
        public void run() {
            synchronized (this) {
                while(i <= 100) {
                    account.saveMoney();
                    i++;
                }
            }
        }
    }
    
    class TakeMoney implements Runnable{
        Account account;
        int i = 1;
        
        public TakeMoney(Account account) {
            this.account = account;
        }
    
        @Override
        public void run() {
            synchronized (this) {
                while(i <= 100) {
                    account.takeMoney();
                    i++;
                }
                
            }
            
            
        }
        
    }
  • 相关阅读:
    HDU 1950 Bridging signals(LIS)
    PKU 1094 Sorting It All Out(拓扑排序)
    中国剩余定理(孙子定理)详解
    51Nod 1079
    翻转游戏
    不构造树的情况下验证先序遍历
    图说流程管理
    从架构到流程
    POS(Plan Operation Support 和 OES(Operation Enable Support)
    流程规划方法→POS法
  • 原文地址:https://www.cnblogs.com/yumengfei/p/11005901.html
Copyright © 2011-2022 走看看