线程互斥通信

Posted

tags:

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

1.子线程运行10次,主线程运行20次,接着回到子线程10次,然后在是主线程20次,如此循环10次。

** 当要用到共同数据(包括同步锁)的若干方法应当放在同一个类当中,体现了程序的高类聚,和健壮性。
public class Test{
public static void main(String[] args) {
final Business business = new Business();
new Thread(new Runnable() {
public void run() {
for(int i=1;i<=10;i++){
business.son();
}
}
}).start();

for(int i=1;i<=10;i++){
business.main();
}
}
}

class Business{
boolean b = true;
public synchronized void son(){
while(!b){
try {
this.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}

for(int j = 1;j<=10;j++){
System.out.println("son=>"+j);
}

b = false;
this.notify();
}

public synchronized void main(){
while (b) {
try {
this.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}

for(int j = 1;j<=20;j++){
System.out.println("main=>"+j);
}

b = true;
this.notify();
}
}

技术分享

以上是关于线程互斥通信的主要内容,如果未能解决你的问题,请参考以下文章

RTX线程通信之——互斥锁

JAVA多线程提高二:传统线程的互斥与同步&传统线程通信机制

C++线程间的互斥和通信

C++线程间的互斥和通信

c# 多线程互斥问题。。

Linux系统编程-(pthread)线程通信(互斥锁)