java 线程中start方法与run方法的区别详细介绍
线程中start方法与run方法的区别
在线程中,如果start方法依次调用run方法,为什么我们会选择去调用start方法?或者在java线程中调用start方法与run方法的区别在哪里? 这两个问题是两个非常流行的初学者级别的多线程面试问题。当一个java程序员开始学习线程的时候,他们首先会学着去继承thread类,重载run方法或者实现runnable接口,实现run方法,然后调用thread实例的start方法。但是当他拥有一些经验之后,他通过查看api文档或者其他途径会发现start方法内部会调用run方法,但是我们中的很多人知道面试时被问到的时候才会意识到这个问题的重要性。在这个java教程里,我们将会明白java中开启线程的时候调用start方法和run方法的不同的地方
这篇文章是我们再起在java多线程上发表的一些文章的后序部分,e.g. difference between runnable and thread in java and how to solve producer consumer problem in java using blockingqueue.如果你还没有读过他们,你可能将会发现他们还是很有趣并且很有用的
在java线程中 start与run的不同
start与run方法的主要区别在于当程序调用start方法一个新线程将会被创建,并且在run方法中的代码将会在新线程上运行,然而在你直接调用run方法的时候,程序并不会创建新线程,run方法内部的代码将在当前线程上运行。大多数情况下调用run方法是一个bug或者变成失误。因为调用者的初衷是调用start方法去开启一个新的线程,这个错误可以被很多静态代码覆盖工具检测出来,比如与fingbugs. 如果你想要运行需要消耗大量时间的任务,你最好使用start方法,否则在你调用run方法的时候,你的主线程将会被卡住。另外一个区别在于,一但一个线程被启动,你不能重复调用该thread对象的start方法,调用已经启动线程的start方法将会报illegalstateexception异常, 而你却可以重复调用run方法
下面是start方法和run方法的demo
线程中的任务是打印线程传入的string值 已经当前线程的名字
这里可以明确的看到两者的区别
public class diffbewteenstartandrun { public static void main(string args[]) { system.out.println(thread.currentthread().getname()); // creating two threads for start and run method call thread startthread = new thread(new task("start")); thread runthread = new thread(new task("run")); startthread.start(); // calling start method of thread - will execute in // new thread runthread.run(); // calling run method of thread - will execute in // current thread } /* * simple runnable implementation */ private static class task implements runnable { private string caller; public task(string caller) { this.caller = caller; } @override public void run() { system.out.println("caller: " + caller + " and code on this thread is executed by : " + thread.currentthread().getname()); } } }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
推荐阅读
-
java 线程中start方法与run方法的区别详细介绍
-
Java线程池的几种实现方法和区别介绍
-
java 线程中start方法与run方法的区别详细介绍
-
Java线程池的几种实现方法和区别介绍实例详解
-
Java中==运算符与equals方法的区别及intern方法详解
-
Java线程池的几种实现方法和区别介绍实例详解
-
Java中==运算符与equals方法的区别及intern方法详解
-
Java 线程中的 sleep(),wait(),yield() 和 join()方法 的区别
-
java中thread线程start和run的区别
-
java 中String和StringBuffer与StringBuilder的区别及使用方法