使用线程交替打印数字和字母组合

package com.lxq.firstTest;
/**
 * @作业5
 * @功能:5、    编写程序实现两个线程一个线程输出1、2、3…26,另外一个线程实现a、b、c…Z,两个线程交替输出,如下:
 * 1,a,2,b,3,c……
 * @author: Qing
 * @创建时间:2018/07/21
 */
public class Test05 {

    public static void main(String[] args) {
        TwoMethods tm= new TwoMethods();
        TheInt ti = new TheInt(tm);
        TheChar tc = new TheChar(tm);
        new Thread(ti).start();
        new Thread(tc).start();
    }

}
//1-26数字的线程
class TheInt implements Runnable{
    TwoMethods tm ;
    public TheInt(TwoMethods tm) {
        super();
        this.tm = tm;
    }
    @Override
    public void run() {
        // TODO Auto-generated method stub
        tm.showNum();
    }    
}
//a到z的字符线程
class TheChar implements Runnable{
    TwoMethods tm ;    
    public TheChar(TwoMethods tm) {
        super();
        this.tm = tm;
    }
    @Override
    public void run() {
        // TODO Auto-generated method stub
        tm.showChar();
    }    
}
//用于打印
class TwoMethods {
    private int flag = 1;
    //数字打印
    public void showNum() {
        // TODO Auto-generated method stub
        for (int i = 1; i <=26; i++) {
            synchronized (this) {
                if (flag != 1) {
                    try {
                        this.wait();//等待
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                }
                System.out.print(i + ",");
                flag = 0;
                this.notify();
            }
        }
    }
    //字符打印
    public void showChar() {
        // TODO Auto-generated method stub
        for (int i = 0; i < 26; i++) {
            synchronized (this) {
                if (flag != 0) {
                    try {
                        this.wait();
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                }
                System.out.print((char) (i + 'a') + ",");
                flag = 1;
                this.notify();
            }

        }

    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值