Android开发Android开发经验谈Android技术知识

如何区别线程的start方法和run方法

2020-05-28  本文已影响0人  不正经的创作者

1. 使用run方法启动线程

public class ThreadTest {
    private static void attack() {
        System.out.println("Fight");
        System.out.println("Cuurrent Thread is : " + Thread.currentThread().getName());
    }

    public static void main(String[] args) {
        Thread t = new Thread() {
            public void run() {
                attack();
            }
        };
        System.out.println("Cuurrent main thread is : " + Thread.currentThread().getName());
        t.run();
    }
}

查看执行结果:

2. 使用start方法启动线程

public class ThreadTest {
    private static void attack() {
        System.out.println("Fight");
        System.out.println("Cuurrent Thread is : " + Thread.currentThread().getName());
    }

    public static void main(String[] args) {
        Thread t = new Thread() {
            public void run() {
                attack();
            }
        };
        System.out.println("Cuurrent main thread is : " + Thread.currentThread().getName());
        t.start();
    }
}

查看执行结果:

结果分析

调用start()方法会创建一个新的子线程并启动,run()方法只是Thread的一个普通方法的调用,还是在主线程里执行。

有用就拿去,只需要帮忙关注点个小赞,感谢。

上一篇 下一篇

猜你喜欢

热点阅读