java线程同步后唤醒_java 线程同步方法执行与唤醒实例

账号提钱、存钱实例方法

public class account {

private int balance;

private int maxbalance;

public account(int balance)

{

this.balance=balance;

}

//同步方法 取钱

public synchronized void transferout(int money) {

//线程同步

//synchronized(this) {

string theadname=thread.currentthread().getname();

if(balance>money) {

try {

thread.sleep(1);

}catch(interruptedexception e ){

e.printstacktrace();

}

balance=balance-money;

system.out.println(theadname+"转走:"+money+",余额:"+balance);

}else {

system.out.println(thread.currentthread().getname()+"余额不足");

}

// }

}

//同步方法 线程等待 存钱

public synchronized void save(int money) {

while(balance+money>maxbalance) {

try {

this.wait(); //线程等待

} catch (interruptedexception e) {

// todo auto-generated catch block

e.printstacktrace();

}

}

string theadname=thread.currentthread().getname();

balance=balance+money;

system.out.println( "save "+money+"元"+" balance:"+balance);

this.notifyall();//唤醒其它线程

}

//同步方法 线程等待 存钱

public synchronized void withdraw(int money) {

while(money>balance) {

try {

this.wait(); //线程等待

} catch (interruptedexception e) {

// todo auto-generated catch block

e.printstacktrace();

}

}

balance=balance-money;

system.out.println( "take "+money+"元"+" balance:"+balance);

this.notifyall();//唤醒其它线程

}

}

测试方法

public class test {

public static void main(string[] args) {

account account2=new account(8000);

thread t1=new thread(new takemoney(account2),"son1");

thread t2=new thread(new takemoney(account2),"son2");

t1.start();

t2.start();

}

}

希望与广大网友互动??

点此进行留言吧!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值