源程序名称AccountTest.java,实现线程同步的例子

代码:

class BankAccount                                           //定义银行账户类BankAccount
{
	private static int amount=2000;                     //账户最初余额为2000元
	public void despoit(int m)                          //定义存款的方法
	{
		amount =amount+m;
		System.out.println("小明存入【"+m+"元】");
	}
	public void withdraw(int m )                        //定义存款的方法
	{
		amount=amount-m;
		System.out.println("张新取走【"+m+"元】");
		if(amount<0)
			System.out.println("***余额不足!***");	
	}
	public int balance()                                //定义得到账户余额的方法
	{
		return amount;
	}
}
class Customer extends Thread 
{
	String name;
	BankAccount bs;                                     //定义一个具体的账户对象
	public Customer(BankAccount b,String s)
	{
		name=s;
		bs=b;
	}
	public synchronized static void cus(String name,BankAccount bs)
	{
		if(name.equals("小明"))                          //判断用户是不是小明
		{
			try
			{
				for(int i=0;i<6;i++)
				{
					Thread.currentThread();              //线程返回
					sleep((int)(Math.random()*300));     //休眠0~0.3s
					bs.despoit(1000);
				}
			}
			catch(InterruptedException e)
			{}
		}
		else{
			try
			{
				for(int i=0;i<6;i++)
				{
					Thread.currentThread();                //线程返回
					Thread.sleep((int)(Math.random()*300));//休眠0~0.3s
					bs.withdraw(1000);
				}
			}
			catch(InterruptedException e)
			{}
		}
	}
	public void run()                                  //定义run方法
	{
		cus(name,bs);
	}
}
public class AccountTest1
{
	public static void main(String args[]) throws InterruptedException 
	{
		BankAccount bs=new BankAccount();
		Customer customer1=new Customer(bs,"小明");
		Customer customer2=new Customer(bs,"张新");
		Thread t1=new Thread(customer1);
		Thread t2=new Thread(customer2);
		t1.start();                                   //启动t1线程对象
		t2.start();                                   //启动t2线程对象
		Thread.currentThread().sleep(500);
	}
}
运行结果:



评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值