码迷,mamicode.com
首页 > 编程语言 > 详细

两个线程交替打印1到100

时间:2017-11-26 12:44:35      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:tac   second   port   div   sleep   start   sys   线程   pack   

package com.zs.thread;

import java.util.concurrent.TimeUnit;

public class SumThread {
    
    public void one() throws InterruptedException{
        synchronized (this) {
            boolean flag = true;
            
            while (flag) {
                
                for(int i = 1; i <= 99;i += 2){
                    System.out.println(i);
                    
                    if(i==99){
                        flag = false;
                        this.notify();
                        break;
                    }
                    this.notify();
                    this.wait();
                }
            }
        }
    }   
        
    public void two() throws InterruptedException{
            synchronized (this) {
                boolean flag = true;
                
                while (flag) {
                    
                    for(int i = 2; i <= 100;i += 2){
                        System.out.println(i);
                        
                        if(i==100){
                            flag = false;
                            this.notify();
                            break;
                        }
                        this.notify();
                        this.wait();
                    }
                }
            }
        }
        
        
    
    public static void main(String[] args) throws Exception {
        SumThread sumThread = new SumThread();
        
        new Thread(()->{
            try {
                sumThread.one();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }).start();
        
        TimeUnit.SECONDS.sleep(1);
        
        new Thread(()->{
            try {
                sumThread.two();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }).start();
    }
}

两个线程交替打印1到100

标签:tac   second   port   div   sleep   start   sys   线程   pack   

原文地址:http://www.cnblogs.com/leihuazhe/p/7898563.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!