java多线程银行取钱_用java线程同步实现银行取款和存款。

题目是:编写程序实现线程的同步.假设一个银行的ATM机,它可以允许用户存款也可以取款.现在一个账户上有200元,用户A和用户B都拥有在这个账户上存款和取款的权利.用户A将存入100元...

题目是:编写程序实现线程的同步.假设一个银行的ATM机,它可以允许用户存款也可以取款.现在一个账户上有200元,用户A和用户B都拥有在这个账户上存款和取款的权利.用户A将存入100元,而用户B将取出50元,那么最后账户的存款应该是250元。求代码

那位大哥大姐会做啊?我的是

//利用线程同步实现模拟银行取款和存款

class Account

{

private static int cunqian = 200;

String name;

static float amount;

static float bmount;

public Account(String name,float amount,float bmount)

{

this.name=name;

this.amount=amount;

this.bmount=bmount;

}

public synchronized static void deposit(float amt)

{

float tmp = amount;

tmp += amt;

try

{

Thread.sleep(10);//模拟其它处理所需要的时间,比如刷新数据库等

}

catch (InterruptedException e)

{

}

amount = tmp;

}

public synchronized static void withdraw(float bmt)

{

float tmp = bmount;

tmp -= bmt;

try

{

Thread.sleep(10);//模拟其它处理所需要的时间,比如刷新数据库等

}

catch (InterruptedException e)

{

}

bmount = tmp;

}

public static float getBalance()

{

return (amount+bmount);

}

}

class Customer extends Thread

{ public void run()

{

for(int i=0;i<=1;i++)

Account.deposit(100.0f);

Account.withdraw(50.0f);

}

}

public class AccountTest

{

public static void main(String[] args)

{

Customer customerA=new Customer();

Customer customerB=new Customer();

customerA.start();

customerB.start();

System.out.println();

System.out.println("最后总钱数:" + Account.getBalance());

}

}

运行结果为0,谁能帮我改正一下。

展开

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值