多个线程操作一个变量(synchronized)

Posted 唐僧喜欢小龙女

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多个线程操作一个变量(synchronized)相关的知识,希望对你有一定的参考价值。

public class WindowSell2 {

    private int num=0;

    public synchronized void increade() throws InterruptedException{
        while (num != 0){
            this.wait();
        }
        num++;
        System.out.println("当前线程是"+Thread.currentThread().getName()+"num="+num);
        this.notifyAll();
    }

    public synchronized void decreade() throws InterruptedException{
        while (num == 0){
            this.wait();
        }
        num--;
        System.out.println("当前线程是"+Thread.currentThread().getName()+"num="+num);
        this.notifyAll();
    }

}

public class MainTest {
public static void main(String[] args) {

/**
*
* 两个线程进行操作
*
*
*
*
*/

WindowSell2 windowSell2 = new WindowSell2();
new Thread(()->{
try {
for (int i = 0; i < 12; i++) {
windowSell2.increade();
}


}catch (InterruptedException e){

}
},"A").start();

new Thread(()->{
try {
for (int i = 0; i < 12; i++) {
windowSell2.decreade();
}


}catch (InterruptedException e){

}
},"B").start();

new Thread(()->{
try {
for (int i = 0; i < 12; i++) {
windowSell2.decreade();
}


}catch (InterruptedException e){

}
},"C").start();


}
}

当前线程是Anum=1
当前线程是Bnum=0
当前线程是Anum=1
当前线程是Bnum=0
当前线程是Anum=1
当前线程是Bnum=0
当前线程是Anum=1
当前线程是Bnum=0
当前线程是Anum=1
当前线程是Cnum=0
当前线程是Anum=1
当前线程是Bnum=0
当前线程是Anum=1
当前线程是Cnum=0
当前线程是Anum=1



 

以上是关于多个线程操作一个变量(synchronized)的主要内容,如果未能解决你的问题,请参考以下文章

2020最新Java工程师面试题-Java 并发编程(附答案,持更中)

Java中的volatile的作用和synchronized作用

java内存模型值synchronized和volatile

多线程环境,线程安全知识点Violatile和synchronized

CAS

Java 多线程(五)之 synchronized 的使用