线程方法

线程方法:

方法 说明
setPriority(int newPriority)

更改线程的优先级

static void sleep(Long millis) 在指定毫秒数内让当前正在执行的线程休眠
void join() 等待该线程优先执行终止,在执行其他线程
static void yield() 暂停当前正在执行的线程对象,并进行CPU调度执行线程
boolean isAlive() 测试线程是否处于活动状态

停止线程:实例

推荐线程自己停止下来

建议使用一个标志位进行终止变量,如当flag=false时终止线程运行。

线程休眠:实例

sleep(时间)指定当前线程阻塞时间的毫秒数

sleep存在异常InterruptedException

sleep时间达到后线程进入就绪状态;

sleep可以模拟网络延时,倒计时等放大问题的发生性。

每一个对象都有一个锁,sleep不会释放锁。

线程礼让:实例

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

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

让CPU重新调度,礼让不一定成功!看CPU心情。

join:实例

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

可想象成插队。

停止线程实例:

package com.wzz.A03多线程;
//测试stop
//1.建议线程正常停止-->利用次数,不建议死循环
//2.建议使用标志位-->设置一个标志位
//3.不要使用stop或者destroy等过时或者JDK不建议使用的方法
public class TestThreadStop9 implements Runnable{
    //1.设置一个标志位
    private boolean flag = true;

    @Override
    public void run() {
        int i = 0;
        while (flag){
            System.out.println("run......Thread"+i++);
        }
    }

    //2.设置一个公开的方法停止线程,转换标志位
    public void stop(){
        this.flag = false;
    }

    public static void main(String[] args){
        TestThreadStop9 testThreadStop1 = new TestThreadStop9();
        new Thread(testThreadStop1).start();

        for (int i = 0; i < 1000; i++) {
            System.out.println("main"+i);
            if (i==900){
                testThreadStop1.stop();//3.调用stop方法切换标志位,让线程停止
                System.out.println("线程该停止了");
            }
        }
    }
}

返回停止线程

线程休眠实例:

package com.wzz.A03多线程;
//模拟网络延时:放大问题的发生性
public class TestThreadSleep10 implements Runnable{
    private int tickNums = 10;//票数

    @Override
    public void run() {//2
        while (true){
            if (tickNums<=0){
                break;
            }
            //模拟延时
            try {//5
                Thread.sleep(200);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }

            System.out.println(Thread.currentThread().getName()+"-->拿到了第"+tickNums--+"张票");
        }
    }

    public static void main(String[] args) {//3
        TestThread4 testThread4 = new TestThread4();

        new Thread(testThread4,"小明").start();
        new Thread(testThread4,"老师").start();
        new Thread(testThread4,"黄牛党").start();
    }
}

返回线程休眠

线程礼让实例:

package com.wzz.A03多线程;
//测试礼让线程
//礼让不一定成功,看cpu心情
public class TestThreadYield12 {
    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实例:

package com.wzz.A03多线程;
//测试join方法//想象为插队
public class TestThreadJoin13 implements Runnable{
    @Override
    public void run() {
        for (int i = 0; i < 100; i++) {
            System.out.println("线程vip来了"+i);
        }
    }

    public static void main(String[] args) throws InterruptedException {
        //启动线程
        TestThreadJoin13 testThreadJoin13 = new TestThreadJoin13();
        Thread thread = new Thread(testThreadJoin13);
        thread.start();

        //主线程
        for (int i = 0; i < 500; i++) {
            if (i==200){
                thread.join();//插队
            }
            System.out.println("main线程"+i);
        }
    }
}

返回join

 

posted @ 2021-10-17 15:28  隔岸稻花香  阅读(25)  评论(0编辑  收藏  举报