java轮番_启动3个线程轮番打印递增的数字

本文介绍了一个编程示例,展示了如何使用Java创建三个线程按顺序打印1到75的数字,每个线程负责一个特定的递增区间。通过ReentrantLock和Condition实现线程间的协调和互斥,确保了输出的正确顺序。
摘要由CSDN通过智能技术生成

启动3个线程打印递增的数字, 线程1先打印1,2,3,4,5, 然后是线程2打印6,7,8,9,10, 然后是线程3打印11,12,13,14,15. 接着再由线程1打印16,17,18,19,20....以此类推, 直到打印到75. 程序的输出结果应该为:

线程1: 1

线程1: 2

线程1: 3

线程1: 4

线程1: 5

线程2: 6

线程2: 7

线程2: 8

线程2: 9

线程2: 10

...

线程3: 71

线程3: 72

线程3: 73

线程3: 74

线程3: 75

public class PrintNoDemo {

private static int printNO = 1;

private static int printThread = 1;

private static Condition condition1;

private static Condition condition2;

private static Condition condition3;

private static ReentrantLock lock = new ReentrantLock();

public static void main(String[] args){

condition1 = lock.newCondition();

condition2 = lock.newCondition();

condition3 = lock.newCondition();

for(int i=0; i<3; i++){

Thread thread = new Thread(new Runnable(){

@Override

public void run() {

while(printNO <= 75){

printNo();

}

}

},"线程"+(i+1));

thread.start();

}

}

public static void printNo() {

try {

lock.lock();

String threadName = Thread.currentThread().getName();

//判断线程,选择等待Condition

if(!threadName.equals("线程"+printThread)){

if(threadName.equals("线程1")){

condition1.await();

} else

if(threadName.equals("线程2")){

condition2.await();

} else

if(threadName.equals("线程3")){

condition3.await();

}

}

//处理打印

for (int i = 0; i 

if(printNO > 75){

break;

}

System.out.println(Thread.currentThread().getName() +":"+ printNO++);

}

//获取下一个打印线程

printThread = printThread%3 +1;

if(threadName.equals("线程1")){

condition2.signal();

}else

if(threadName.equals("线程2")){

condition3.signal();

}else

if(threadName.equals("线程3")){

condition1.signal();

}

//            lock.notifyAll();

} catch (InterruptedException e) {

e.printStackTrace();

} finally {

lock.unlock();

}

}

}

网友实现方法

class NumberPrinter extends Thread {

static int c = 0;

static int state = 0;

private int id;

@Override

public synchronized void run() {

while (state 

if (state % 3 == id) {

for (int j = 0; j 

c++;

System.out.format("Thread %d: %d %n", id, c);

}

state++;;

}

}

}

public NumberPrinter(int id) {

this.id = id;

}

public static void main(String[] args) {

for (int i = 0; i 

new NumberPrinter(i).start();

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值