面试手撕——使用两个线程交替打印1-100

记录一下使用两个线程交替打印1-100的操作:

/**
 * @description: 使用两个线程交替打印1-100
 * @author: Jay
 * @create: 2024-05-27 21:29
 **/
public class print_1_to_100 {
    static volatile int flag = 1; //此处需要加关键字volatile保证变量之间的可见性,否则程序将会阻塞在while循环中动不了(有点类似死锁)。
    public static void main(String[] args) {
        new Thread(new thread1()).start();
        new Thread(new thread2()).start();
    }
}

class thread1 implements Runnable{
    @Override
    public void run() {
        int i = 1;
        while (i<=99){
            if(print_1_to_100.flag == 1){
                System.out.println("线程1: " + i );
                i += 2;
                print_1_to_100.flag = 2;
            }
        }
    }
}
class thread2 implements Runnable{
    @Override
    public void run() {
        int i = 2;
        while (i<=100){
            if(print_1_to_100.flag == 2){
                System.out.println("线程2: " + i );
                i += 2;
                print_1_to_100.flag = 1;
            }
        }
    }
}



运行结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值