编写一个程序,启动三个线程,三个线程的名称分别是 A,B,C; 每个线程将自己的名称在屏幕上打印5遍,打印顺序是ABCABC...

本文介绍如何编写一个程序,启动三个线程A, B, C,使得它们按照ABC的顺序轮流打印自己的名称,每轮打印5次。内容涉及多线程同步和控制执行流程。" 111829929,10075421,Unity 制作坦克大战实战教程,"['游戏开发', 'Unity3d', 'C#编程', '游戏逻辑', '动画效果']
摘要由CSDN通过智能技术生成
class Print{
    private int flag = 1;
    private int count = 0;

    public int getCount() {
        return count;
    }

    public synchronized void A(){
        while(flag != 1){
            try {
                wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        System.out.print(Thread.currentThread().getName());
        count++;
        flag = 2;
        notifyAll();
    }
    public synchronized void B(){
        while(flag !=2){
            try {
                wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        System.out.print(Thread.currentThread().getName());
        count++;
        flag = 3;
        notifyAll();
    }
    public synchronized void C(){
        while(flag != 3){
            try {
                wait();
            } catch (InterruptedException e) {
         
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值