使用两个线程来累加 count 的值

每个线程循环 1w 次,累加变量 count 的值,count 默认值为 0,注意线程安全问题。

import org.w3c.dom.css.Counter;

public class Demo2 {

    //实例化执行累加的类
    public static Counters counters = new Counters();
    public static void main(String[] args) throws InterruptedException {
        //定义两个线程
        Thread t1 = new Thread(() -> {
            for (int i = 0; i < 10000; i++) {
                counters.increase();
            }
        });
        Thread t2 = new Thread(() -> {
            for (int i = 0; i < 10000; i++) {
                counters.increase();
            }
        });

        //启动线程
        t1.start();
        t2.start();
        //等待线程执行完成
        t1.join();
        t2.join();
        System.out.println("累加结果 = "+counters.count);
    }
}





// 定义一个执行累加的类
class Counters {
    // 初始值为0
    public int count = 0;

    // 累加方法,用synchronized保证线程安全
    public synchronized void increase () {
        count++;
    }
}






使用两个线程来累加 count 的值_第1张图片

 

你可能感兴趣的:(java,开发语言)