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

Java学习——多线程例子:银行

时间:2018-12-17 18:02:53      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:catch   current   inf   system   com   equals   runnable   rgs   setname   

 

package cys;

public class Example9_3 {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Bank bank = new Bank();
        bank.setMoney(200);
        Thread thread1,thread2;
        thread1=new Thread(bank);
        thread1.setName("One");
        thread2=new Thread(bank);
        thread2.setName("Two");
        thread1.start();
        thread2.start();
    }

}
class Bank implements Runnable{
    private int number = 0;
    public void setMoney(int m){
        number = m;
    }
    public void run(){
        while(true){
            String name = Thread.currentThread().getName();
            if(name.equals("One")){
                if(number<=80){
                    System.out.println(name + "进入死亡状态");
                    return;
                }
                number = number+10;
                System.out.println("我是Thread"+name + "当前 number="+number);
            }
            
            if(Thread.currentThread().getName().equals("Two")){
                if(number<=0){
                    System.out.println(name+"进入死亡状态");
                    return;
                }
                number=number-100;
                System.out.println("我是Thread"+name+"当前 number="+number);
            }
            try{
                Thread.sleep(800);
            }catch(InterruptedException e){

            }
        
        
    }
    }
}

技术分享图片

 

Java学习——多线程例子:银行

标签:catch   current   inf   system   com   equals   runnable   rgs   setname   

原文地址:https://www.cnblogs.com/caiyishuai/p/10132851.html

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