博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多线程经典编程题 实践篇
阅读量:5014 次
发布时间:2019-06-12

本文共 1094 字,大约阅读时间需要 3 分钟。

题目一:写两个线程,一个线程打印1~52,另一个线程打印字母A~Z。打印顺序为12A34B56C........5152Z。要求用线程间的通信。package test;

import java.lang.Thread;
class Printer{
    private int index = 1;
    public synchronized void print(int n){
        while(index%3==0){
            try{
                wait();
/*在其他线程调用此对象的notify方法钱,导致当前线程等待*/
            }catch(Exception e)
            {
                e.printStackTrace();
            }
        }
        System.out.print(index);
        index++;
        notifyAll();
    }
    public synchronized void print(char c){
        while(index%3!=0){
            try{
                wait();
            }catch(Exception e){
                e.printStackTrace();
            }
        }
        System.out.print(c);
        System.out.print(index);
        index++;
        notifyAll();
    }
}
class NumberPrinter extends Thread{
    private Printer p;
    public NumberPrinter(Printer p){
        this.p=p;
    }
    public void run(){
        for(int i=1;i<=52;i++)
            p.print(i);
    }
}
class CharPrinter extends Thread{
    private Printer p;
    public CharPrinter(Printer p){
        this.p=p;
    }
    public void run(){
        for(char c='A';c<='Z';c++)
            p.print(c);
    }
}
public class MyThread {
    public static void main(String args[]){
        Printer p = new Printer();
        Thread t1 = new NumberPrinter(p);
        Thread t2 = new CharPrinter(p);
        t1.start();
        t2.start();
    }
}

转载于:https://www.cnblogs.com/RunForLove/p/4158615.html

你可能感兴趣的文章
转载,gini系数代码对应的公式
查看>>
编译安装mysql-5.6.40
查看>>
年终总结
查看>>
初创互联网公司技术架构变迁之路
查看>>
【BZOJ 3676】 3676: [Apio2014]回文串 (SAM+Manacher+倍增)
查看>>
【网络流24题】No. 13 星际转移问题 (网络判定 最大流)
查看>>
解析$.grep()源码及透过$.grep()看(两次取反)!!的作用
查看>>
[模板] 字符串hash
查看>>
SGU438_The Glorious Karlutka River =)
查看>>
Linux集群及LVS简介
查看>>
简单几何(直线与圆的交点) ZOJ Collision 3728
查看>>
Codeforces Round #327 (Div. 2)
查看>>
如何解决Provisional headers are shown问题(转)
查看>>
开发网站遇到的bug
查看>>
实现简单的接口自动化测试平台
查看>>
EXCEL工作表合并
查看>>
Prime Path
查看>>
ODAC(V9.5.15) 学习笔记(三)TOraSession(2)
查看>>
单纯形法
查看>>
SQL中的replace函数
查看>>