线程同步练习

在这里插入图片描述

public class Account {
	private   double balance;
	public Account(double balance) {
		this.balance = balance;
	}
	
	public  double getBalance() {
		return this.balance;
	}

	public void setBalance(double balance) {
		balance = balance;
	}

	public   void cun(double money) {
			synchronized(this) {
			balance += money;
			try {
				Thread.sleep(100);
			} catch (InterruptedException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
			System.out.println(Thread.currentThread().getName() + "存了:" + balance + "元");
		
	}
	}
}

public class Customer {
	private Account acct;
	public Account getAcct() {
		return acct;
	}
	public void setAcct(Account acct) {
		this.acct = acct;
	}
	public Customer(Account acct){
		this.acct = acct;
	}
	
}

public class MyThread1 extends Thread{
	private Customer cus;
	public MyThread1(Customer cus) {
		this.cus  = cus;
	}
	public void run() {
		for(int i = 0;i < 3;i++) {
		cus.getAcct().cun(1000);
		
		}
	}
}

public class Test1 {
	public static void main(String[] args) {
		Account acct = new Account(0); 
		Customer cu1 = new Customer(acct);
		Customer cu2 = new Customer(acct);
		MyThread1 mt1 = new MyThread1(cu1);
		MyThread1 mt2 = new MyThread1(cu2);
		mt1.setName("甲");
	
		mt2.setName("乙");
		mt1.start();
		mt2.start();
	}

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值