多线程:sleep方法简单使用、线程礼让、线程强制执行join

package com.hanbin.state;

import org.w3c.dom.ls.LSOutput;

import java.util.Date;

public class TestSleep2 {
    //打印当前系统时间
    public static void main(String[] args) {
        Date starttime = new Date(System.currentTimeMillis());//获取当前时间
        while(true){
            try {
                Thread.sleep(1000);
                System.out.println("当前时间:"+starttime);
                starttime = new Date(System.currentTimeMillis());//更新时间
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
    //模拟倒计时
    public void tendDown(){
        int num = 10;
        while(true){
            try {
                Thread.sleep(10);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            System.out.println(num--);
            if(num<=0){
                break;
            }
        }
    }
}

线程礼让

1.礼让线程,让当前正在执行的线程暂停,但不阻塞

2.将线程从运行状态转为就绪状态

3.让cpu重新调度,说不定调度还是原来的,礼让不一定成功!看cpu心情

package com.hanbin.state;

public class TestYield {
    public static void main(String[] args) {
        MyYield myYield = new MyYield();
        new Thread(myYield,"a").start();
        new Thread(myYield,"b").start();
        
    }
}
class MyYield implements Runnable{

    @Override
    public void run() {
        System.out.println(Thread.currentThread().getName()+"线程开始执行");
        Thread.yield();//礼让
        System.out.println(Thread.currentThread().getName()+"线程停止执行");
    }
}

线程强制执行join

join合并线程,待此线程执行完成后,再执行其他线程,其他线程阻塞

可以想象成插队。

多线程:sleep方法简单使用、线程礼让、线程强制执行join_第1张图片

//测试join方法
public class TestJoin implements Runnable{
    @Override
    public void run() {
        for (int i = 0; i < 100; i++) {
            System.out.println("VIPlaile");
            try {
                Thread.sleep(200);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }

    public static void main(String[] args) throws InterruptedException {
        TestJoin testJoin = new TestJoin();
        Thread thread = new Thread(testJoin);
        thread.start();
        for (int i = 0; i < 500; i++) {
            if(i==50){
                thread.join();
            }
            System.out.println("回到main方法"+i);
        }
    }
}

join强势入场,使得主程序暂停,一直等待此线程结束,main线程才开始继续工作。

你可能感兴趣的:(java)