多线程面试题之多线程打印数字

https://blog.csdn.net/u013760665/article/details/88805644
    两个线程交替打印0–1000之间之间的数字(线程1打印偶数,线程2打印奇数),完全可以用synchronized配合wait() notify()的方法实现,但是这样开销比较大。可以采用添加一个flag变量的方法。代码如下:

public class CodeTest {

    volatile static int flag=0;//这个flag要被volatile修饰以保证可见性
    volatile static int i=0;
    public static void main(String[] args) {
        Thread t1=new Thread(new Thread1());
        Thread t2=new Thread(new Thread2());
        t1.start();
        t2.start();
    }
    public static class Thread1 implements Runnable{

        public void run() {
           // int i=0;
            while(i<99){
                if(flag==0){
                    System.out.println("t1="+i);
                    i++;
                    flag=1;
                }
            }
        }

    }
    public static class Thread2 implements Runnable{
        public void run(){
         //   int i=1;
            while (i<99){
                if(flag==1){
                    System.out.println("t2="+i);
                    i++;
                    flag=0;
                }
            }
        }
    }

}

    当要求三个线程的时候也可以采用这个方法,但是要注意用volatile关键字保证可见性,代码如下:

public class CodeTest {

    volatile static int flag=0;//这个flag要被volatile修饰以保证可见性
    private static volatile int i=0;
   
    public static void main(String[] args) {
        Thread thread1=new Thread(new Thread1());
        Thread thread2=new Thread(new Thread2());
        Thread thread3=new Thread(new Thread3());
        thread1.start();
        thread2.start();
        thread3.start();
    }
    public static class Thread1 implements Runnable{

        public void run() {
            while(i<100){
                if(flag==0) {
                    System.out.println("t1="+i);
                    i++;
                    flag=1;
                }
            }
        }

    }

    public static class Thread2 implements Runnable{

        public void run() {

            while(i<100){
                if(flag==1){
                    System.out.println("t2="+i);
                    i++;
                    flag=2;
                }
            }
        }

    }

    public static class Thread3 implements Runnable{

        public void run() {

            while(i<100){
                if(flag==2){
                    System.out.println("t3="+i);
                    i++;
                    flag=0;
                }
            }
        }

    }
    
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值