码迷,mamicode.com
首页 > 编程语言 > 详细

线程同步代码块:两个客户往一个银行存钱,每人存三十次一次存一百。 模拟银行存钱功能,时时银行现金数。

时间:2018-01-20 22:48:25      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:银行   stat   set   pac   ring   test   out   for   sync   

package com.swift;

public class Bank_Customer_Test {
    public static void main(String[] args) {
        /*
         * 两个客户往一个银行存钱,每人存三十次一次存一百。 模拟银行存钱功能,时时银行现金数。
         */

        Customer customer = new Customer();
        new Thread(customer, "zhangsan").start();
        new Thread(customer, "lisi").start();
    }
}

class Bank {
    private static int sum = 0;

    public void setSum(int money) {
        sum = sum + money;
        System.out.println(Thread.currentThread().getName()+"存钱 :"+money+" 银行共有资金: "+sum);
    }

}

class Customer implements Runnable {
    private Bank bank = new Bank();

    public void run() {
        for (int i = 0; i < 30; i++) {
            synchronized("lock") {
                bank.setSum(100);
            }
        }
    }
}

 

线程同步代码块:两个客户往一个银行存钱,每人存三十次一次存一百。 模拟银行存钱功能,时时银行现金数。

标签:银行   stat   set   pac   ring   test   out   for   sync   

原文地址:https://www.cnblogs.com/qingyundian/p/8321938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!