线程在生命周期中经历多个阶段。例如,一个线程进入世界,启动,运行,然后消失。下图解释了线程的完整生命周期。
开始您的免费软件开发课程
网络开发、编程语言、软件测试及其他
线程是在操作系统级别定义的。 Java 语言以及所有其他语言都利用操作系统提供的服务。从开发人员的角度来看,线程是我们将编写应用程序并以某种方式执行的一组指令。应用程序本身可以由多个线程组成。不同的线程可以同时执行。 JVM(Java 虚拟机)使用多个线程。有用于垃圾收集的线程。有针对即时编译器的线程和其他技术线程。
下面是Java中线程生命周期的不同状态:
1。新:新线程在新状态下开始其生命周期。在程序开始线程之前,它会继续保持此状态。此外,它也称为创建的线程。
2。可运行:在最近生成的线程可以开始后,该线程将变为可运行。具有此状态的线程被认为正在执行其进程。
3。等待:有时,即使线程正在等待另一个线程执行活动,线程也会转换为等待状态。仅当附加线程指示等待线程继续执行时,线程才会转换为可运行状态。
4。定时等待:可运行线程可以轻松地进行特定的定时等待状态以获得特定的时间间隔。一旦该点间隔到期或者它真正等待的事件发生,具有此状态的线程就会转换返回到可运行状态。
5。终止:可运行线程进入终止状态,因为它完成了其任务,否则终止。
Java中创建线程最基本的方法是使用Runnable模式。首先,你需要创建一个Runnable接口的实例,这很简单;只有一种方法可以实现。然后我们将此实例传递给 Thread 类的构造函数。然后,我们只需调用创建的线程对象的 start() 方法来启动一个新线程,该线程将运行包装在 Runnable 对象中的任务。
首先,我们创建一个 Runnable 实例。 只有一种方法需要实现,称为 run() 方法。这是 Java 7 的模式,使用匿名类的实例来实现这一点。但是我们也可以使用 lambda 表达式来实现 Runnable,因为 Runnable 接口中只有一个方法。
让我们在非常简单的示例上创建线程。
我们将了解应同步的未同步代码的竞争条件会出现什么问题,并且我们将使用同步来修复我们的代码。第一个例子非常简单;这是非常基本的。这只是创建一个任务。
输出:
任务是 Runnable 接口的一个实例,我们称其为 Runnable,我们可以使用 lambda 表达式来实现该接口。该任务被交给一个新线程并在该线程的上下文中执行。因此,我们将打印出正在运行此任务的线程的名称。我正在运行... Thread.currentThread() 是 Thread 类的静态方法,它返回运行当前任务的线程。我们只需在该线程对象上调用 getName() 即可返回线程的名称,然后在创建 Thread 实例后 t = new Thread. 将此可运行程序作为参数传递。那么这个线程就要执行这段代码了。并启动它。 t.start() 这是我们需要调用的 start() 方法。我们还可以使用 t.setName(“My thread”) 给出该线程的显式名称。现在我们可以执行这段代码了。现在我们不再调用start()方法,而是调用run()方法,如果我们运行这段代码,问题是任务正确执行了,但它没有在我们创建的线程中执行。它是在主线程中执行的,也就是执行main方法的线程。因此,如果我们想启动一个新线程,则不应调用此 run() 方法。
输出:
简单的Thread描述的方法如表所示。
Data Types | Thread Method Names |
String |
getName() Return this thread’s name |
int |
get priority()
Returns the thread’s priority |
boolean |
isAlive()
Tests if this thread is still running |
void |
join()
Waits for this thread to die (terminate) |
void |
run()
Whenever this thread was built utilizing an individual Runnable object, which usually Runnable object’s run method is called, this method will do nothing and returns. Whenever thread class can be extended and run() method is over-ridden during sub-class, then an over-ridden run() method is called. |
void |
setName(String name)
Alterations the name with this thread to become comparable to the argument name. |
static void
|
sleep(long millis) throws Interrupted/Exception It causes the presently performing thread to rest for the required quantity of milliseconds. |
static void |
sleep(long millis, int Nanos) throws InterruptedException
It causes the presently performing thread to sleep (cease execution) for the required quantity of milliseconds as well as the particular quantity of nanoseconds. |
void |
start()
Triggers these threads to start execution; the Java Virtual Machine calls the run method of that thread. |
static void |
yield()
Triggers the presently thread object to pause and permit additional threads to execute briefly. |
static Thread |
currentThread()
Returns a mention of the presently executing thread object. |
返回该话题的名称
以上是Java中的线程生命周期的详细内容。更多信息请关注PHP中文网其他相关文章!