对于多线程编程而言,理解线程的生命周期非常重要,本文就针对这一点进行讲解。
一、线程的状态
线程的存在有几种不同的状态,如下:
- New状态
- Ready状态
- Running状态
- Dead状态
- Non Runnable状态
1、New状态
New状态是线程已经被创建,但是还未开始运行的状态。此状态通过调用线程的start()方法可让线程运行。
2、Runnable状态
Runnable状态可称为准备运行状态,也可称为队列,此状态通过调用线程的start()方法可让线程运行。
线程调度器决定要运行哪些线程,且线程运行多久。
3、Running状态
如果一个线程正在执行中,那么它处于Running状态。
4、Dead状态
一旦某个线程进入了Dead状态,那么它就再也不能运行了。
5、Non runnable状态
某个正在运行的线程可转变到Non runnable状态,这取决于运行情况。
某个线程还可以一直保持Non runnable状态,直到满足的条件出现。
某个Non runnable状态的线程不能直接跳转到运行状态,而是必须先转变为Runnable状态。
睡眠Sleeping:线程睡眠指定的时间。
I/O阻塞:线程等待,直到阻塞操作的完成。
join阻塞:线程等待,直到另一个线程执行完成。
等待通知:线程等待另一个线程的通知。
锁机制阻塞:线程等待,直到指定的锁被释放,获得锁。
Java虚拟机JVM根据线程的优先级和调度原则执行线程。
二、线程调度器
在JVM中,线程调度器的实现通常基于以下两种策略:
- 抢占式调度策略
- 分时调度策略或Round-robin循环调度策略
线程调度器的实现与平台无关,因此线程的调度是不可预测的。
三、线程的优先级
JVM会为每一个新创建的线程分配一个优先级。
- 0级:这是最低的优先级
- 5级:这是普通的优先级
- 10级:这是最高的优先级
为了保存这些值,线程类有三个相应的变量:
- public static final int MIN_PRIORITY
- public static final int NORM_PRIORITY
- public static final int MAX_PRIORITY
一个线程首先会继承其父线程的优先级,每一个线程默认的优先级是5级(Normal优先级),主线程的默认优先级为5级。
可以通过setPriority(int priority)方法来设置线程的优先级。
- public final void setPriority(int priority)
- public void getPriority();
用户定义的线程,其默认的线程名为Thread+序号,序号从0开始,比如第一个线程为Thread0。
线程名可以通过setName(String name)方法进行设置,可使用getName()方法获得线程的名字。
- public final void setName(String name)
- public final String getName().
实例
下面看一个例子:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
package demo.ch;
public class UserThread extends Thread {
UserThread() {
super ();
}
UserThread(String name) {
super (name);
}
public void run() {
System.out.println( "thread started running.." );
}
public static void main(String[] args) {
UserThread thread1 = new UserThread( "Thread1" );
UserThread thread2 = new UserThread( "Thread2" );
System.out.println( "Thread 1 initial name and priority" );
System.out.println( "name:" + thread1.getName());
System.out.println( "priority:" + thread1.getPriority());
System.out.println( "Thread 2 initial name and priority" );
System.out.println( "name:" + thread2.getName());
System.out.println( "priority:" + thread2.getPriority());
System.out.println( "" );
thread1.setPriority( 6 );
thread2.setPriority( 9 );
System.out.println( "Thread 1 initial name and priority" );
System.out.println( "name:" + thread1.getName());
System.out.println( "priority:" + thread1.getPriority());
System.out.println( "Thread 2 initial name and priority" );
System.out.println( "name:" + thread2.getName());
System.out.println( "priority:" + thread2.getPriority());
System.out.println( "" );
thread1.start();
thread2.start();
for ( int i= 0 ; i< 5 ; i++)
System.out.println( "main method i value: " + i);
}
}
|
输出结果:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
Thread 1 initial name and priority
name:Thread1
priority: 5
Thread 2 initial name and priority
name:Thread2
priority: 5
Thread 1 initial name and priority
name:Thread1
priority: 6
Thread 2 initial name and priority
name:Thread2
priority: 9
main method i value: 0
main method i value: 1
thread started running..
main method i value: 2
thread started running..
main method i value: 3
main method i value: 4
|
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://blog.csdn.net/chszs/article/details/50058129