java线程经典编程题,一道经典的Java多线程编程题

问题描述

启动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

解法:采用java多线程回调的方法

回调类:

public class PrintCallback {

private int num;

private String threadName;

public PrintCallback() {

num = 0;

}

public synchronized void CallbackMethod(String threadName){

if (num <= 75) {

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

System.out.println(threadName+":"+(++num));

}

}

}

public void PrintNum() throws InterruptedException{

for (int i = 1; i < 6; i++) {

for (int j = 1; j < 4; j++) {

threadName = "线程"+j;

PrintThread runnable = new PrintThread(this);

Thread thread = new Thread(runnable);

thread.setName(threadName);

thread.start();

thread.join();

}

}

}

public static void main(String[] args) throws InterruptedException{

PrintCallback pc = new PrintCallback();

pc.PrintNum();

}

}

线程类:

public class PrintThread implements Runnable{

private PrintCallback pcback;

public PrintThread(PrintCallback pcback) {

this.pcback = pcback;

}

public void run() {

pcback.CallbackMethod(Thread.currentThread().getName());

}

}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值