Java多线程不共享数据

import org.omg.CORBA.PUBLIC_MEMBER;

/** * Created by wuyupku on 2019-04-12 12:24 * * @Beijing CHINA */
public class Demo01 {
    public static void main(String[] args) {
        mythread thread1 = new mythread("a");
        mythread thread2 = new mythread("b");
        mythread thread3 = new mythread("c");
        mythread thread4 = new mythread("d");
        thread1.start();
        thread2.start();
        thread3.start();
        thread4.start();
        System.out.println("运行结束");
    }
}
class mythread extends Thread {
    private int count = 5;

    public mythread(String name) {
        super();
        this.setName(name);
    }

    @Override
    public void run() {
        super.run();
        while (count > 0) {
            count--;
            System.out.println("由" + this.currentThread().getName() + "计算,count" + count);
        }
    }
}

全部评论

相关推荐

11-27 17:08
已编辑
牛客_产品运营部_私域运营
腾讯 普通offer 24k~26k * 15,年包在36w~39w左右。
点赞 评论 收藏
分享
我见java多妩媚:大外包
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-26 15:46
已编辑
字节国际 电商后端 24k-35k
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务