`

Thread 源码

    博客分类:
  • java
 
阅读更多

 转载 http://www.cnblogs.com/gw811/archive/2012/10/15/2724602.html

 

1、Runnable接口源码:

1 public interface Runnable {
2     public abstract void run();
3 }

  2、Thread类与Runnable接口的继承关系

1 public class Thread implements Runnable{
2 
3 }

  Runnable接口仅有一个run()方法,Thread类实现了Runnable接口,所以,Thread类也实现了Runnable接口。

  3、构造函数

1 public Thread() {
2     init(null, null, "Thread-" + nextThreadNum(), 0);
3 }
1 public Thread(Runnable target) {
2     init(null, target, "Thread-" + nextThreadNum(), 0);
3 }
1 public Thread(ThreadGroup group, Runnable target) {
2     init(group, target, "Thread-" + nextThreadNum(), 0);
3 }
1 public Thread(String name) {
2     init(null, null, name, 0);
3 }
                  还有其它的构造方法,此处省略。。。

  这里的第三个参数是设置线程的名称,从下面的代码中可以看出,生成名称的规则是:”Thread-”加上创建的线程的个数(第几个)。

继续查看init方法:

复制代码
 1 /**
 2      * Initializes a Thread.
 3      *
 4      * @param g the Thread group
 5      * @param target the object whose run() method gets called
 6      * @param name the name of the new Thread
 7      * @param stackSize the desired stack size for the new thread, or
 8      *        zero to indicate that this parameter is to be ignored.
 9      */
    //ThreadGroup:线程组表示一个线程的集合。此外,线程组也可以包含其他线程组。线程组构成一棵树,在树中,除了初始线程组外,每个线程组都有一个父线程组。  10 private void init(ThreadGroup g, Runnable target, String name, 11 long stackSize) { 12 Thread parent = currentThread(); 13 SecurityManager security = System.getSecurityManager(); 14 if (g == null) { 15 /* Determine if it's an applet or not */ 16 17 /* If there is a security manager, ask the security manager 18 what to do. */ 19 if (security != null) { 20 g = security.getThreadGroup(); 21 } 22 23 /* If the security doesn't have a strong opinion of the matter 24 use the parent thread group. */ 25 if (g == null) { 26 g = parent.getThreadGroup(); 27 } 28 } 29 30 /* checkAccess regardless of whether or not threadgroup is 31 explicitly passed in. */ 32 g.checkAccess(); 33 34 /* 35 * Do we have the required permissions? 36 */ 37 if (security != null) { 38 if (isCCLOverridden(getClass())) { 39 security.checkPermission(SUBCLASS_IMPLEMENTATION_PERMISSION); 40 } 41 } 42 43 44 g.addUnstarted(); 45 46 this.group = g;

    //每个线程都有一个优先级,高优先级线程的执行优先于低优先级线程。每个线程都可以或不可以标记为一个守护程序。当某个线程中运行的代码创建一个新 Thread 对象时,该新线程的初始优先级被设定为创建线程的优先级,并且当且仅当创建线程是守护线程时,新线程才是守护程序。 

47     this.daemon = parent.isDaemon();
48     this.priority = parent.getPriority();
49     this.name = name.toCharArray();
50     if (security == null || isCCLOverridden(parent.getClass()))
51         this.contextClassLoader = parent.getContextClassLoader();
52     else
53         this.contextClassLoader = parent.contextClassLoader;
54     this.inheritedAccessControlContext = AccessController.getContext();
55     this.target = target;
56     setPriority(priority);
57         if (parent.inheritableThreadLocals != null)
58         this.inheritableThreadLocals =
59         ThreadLocal.createInheritedMap(parent.inheritableThreadLocals);
60         /* Stash the specified stack size in case the VM cares */
61         this.stackSize = stackSize;
62 
63         /* Set thread ID */
64         tid = nextThreadID();
65     }
复制代码

  初始化时设置了是否为守护线程,优先级,初始化名称。

  4、Thread的start方法的实现:

复制代码
 1 public synchronized void start() {
 2         /**
 3      * This method is not invoked for the main method thread or "system"
 4      * group threads created/set up by the VM. Any new functionality added 
 5      * to this method in the future may have to also be added to the VM.
 6      *
 7      * A zero status value corresponds to state "NEW".
 8          */
 9         if (threadStatus != 0)
10             throw new IllegalThreadStateException();
11         group.add(this);
12         start0();
13         if (stopBeforeStart) {
14         stop0(throwableFromStop);
15     }
16 }
复制代码

  这里主要的是start0方法;查看其实现:

 1 private native void start0();

  这里使用了本地调用,通过C代码初始化线程需要的系统资源。可见,线程底层的实现是通过C代码去完成的。

4、Thread的run方法的实现

1 public void run() {
2     if (target != null) {
3         target.run();
4     }
5 }

  这里的target实际上要保存的是一个Runnable接口的实现的引用:

1 private Runnable target;

  所以使用继承Thread创建线程类时,需要重写run方法,因为默认的run方法什么也不干。

  而当我们使用Runnable接口实现线程类时,为了启动线程,需要先把该线程类实例初始化一个Thread,实际上就执行了如下构造函数:

1 public Thread(Runnable target) {
2     init(null, target, "Thread-" + nextThreadNum(), 0);
3 }

  即是把线程类的引用保存到target中。这样,当调用Thread的run方法时,target就不为空了,而是继续调用了target的run方法,所以我们需要实现Runnable的run方法。这样通过Thread的run方法就调用到了Runnable实现类中的run方法。

  这也是Runnable接口实现的线程类需要这样启动的原因。

分享到:
评论

相关推荐

    rt-thread源码

    RT-Thread实时操作系统是一个分层的操作系统,它包括了: 底层移植、驱动层,这层与硬件密切相关,由Drivers和CPU移植相构成。 硬实时内核,这层是RT-Thread的核心,包括了内核系统中对象的实现,例如多线程及其...

    rt-thread物联网操作系统 v3.1.4-源码.zip

    《rt-thread物联网操作系统 v3.1.4-源码.zip》是针对rt-thread物联网操作系统的源码包...通过深入学习和实践rt-thread源码,开发者可以提升在物联网操作系统领域的专业技能,为智能硬件和物联网应用开发打下坚实基础。

    实时操作系统+rt-rtthread源码

    深入研究RT-Thread源码可以帮助开发者更好地理解RTOS的工作原理,从而更高效地利用其特性来开发高效、可靠的嵌入式系统。对于初学者,建议从基础概念入手,逐步学习并实践代码,而对于有经验的开发者,源码分析可以...

    rtthread源码

    关于rt-thread实时操作系统的源码,rtthread是一个来自中国的开源物联网操作系统,它具备非常强的可伸缩能力:从一个可以运行在 ARM Cortex-M0 芯片上的极小内核,到中等的 ARM Cortex-M3/4/7 系统,甚至是运行于 ...

    rt-thread内核源码

    《深入解析rt-thread内核源码》 rt-thread是一个开源、免费、实时性强、可裁剪的嵌入式操作系统内核,它具有轻量级、高效稳定的特点,被广泛应用于各种嵌入式设备中。rt-thread的操作系统内核源码是理解其工作原理...

    QEMU/mini2440上运行RT-Thread源码及工具

    1. 首先,解压`rt-thread-0.4.0 beta1`,这包含了RT-Thread的源码。 2. 安装Python 2.5.2,确保环境变量设置正确,可以执行Python脚本。 3. 安装SCONS,将其添加到PATH环境变量,以便在命令行中调用。 4. 使用SCONS...

    2-RT-Thread源码及官方参考资料.zip

    4. **rtthread nano 源码 3.0.3版本.rar**:这是RT-Thread的nano版本源码,适用于资源有限的嵌入式平台。RT-Thread nano是一个轻量级的分支,它保留了基本的实时性和多任务能力,但去除了许多非必要的组件,以实现更...

    rt-thread 3.0.3 源码压缩包

    rt-thread 3.0.3 源码压缩包,也可去gayhub上下载,或者官网。

    rt-thread 完整源代码

    RT-Thread 是一款主要由中国开源社区主导开发的开源实时操作系统。实时线程操作系统不仅仅是一个单一的实时操作系统内核,它也是一个完整的应用系统,包含了实时、嵌入式系统相关的各个组件:TCP/IP协议栈,文件系统...

    RT-thread源码包,移植源码包,开发板移植实时操作系统使用

    对应文章开发板移植RT-thread

    boost线程库源码,程序员自用

    Boost库本身是一个开源集合,包含了各种各样的高质量、跨平台的C++库,其中线程库(Boost.Thread)是提升C++多线程编程能力的重要组件。这个压缩包文件"boost_1_85_0"包含了Boost库的一个特定版本,即1.85.0版,这...

    STM32F+ RT-Thread工程源码实验

    2. **RT-Thread移植**:下载并集成RT-Thread源码到项目中,配置RTOS的参数,如任务数量、堆内存大小等。 3. **驱动开发**:根据需要编写或适配STM32的硬件驱动,如GPIO、串口、定时器等,使RT-Thread能有效控制硬件...

    ThreadX_源码.rar

    threadx 源码

    DreamCats#java-notes#Thread源码1

    // run的时候要用到// 线程组// 这里很重要,TL的变量在Thread里面自定义的一种Map方法public synchronized void sta

    RT-Thread源代码

    由于上传大小限制,这是第一部份。要把part1,2,3一起下载并解压。

    java Thread

    两个售票窗口同时出售50张票; 程序分析:1.票数要使用同一个静态值 2.为保证不会出现卖出同一个票数,要java多线程同步锁。 设计思路:1.创建一个站台类Station,继承Thread,重写run...里面有源码,导入myeclipse执行

    ThreadX源码及文档

    ThreadX是一个实时操作系统(RTOS),在嵌入式系统开发...从理论到实践,从源码解析到平台移植,涵盖了ThreadX操作系统的方方面面。开发者可以借此深入了解RTOS的工作机制,提高自己在嵌入式系统设计和调试方面的能力。

    rt-thread-v3.0.2 源代码

    RT-Thread 是一款主要由中国开源社区主导开发的开源实时操作系统。实时线程操作系统不仅仅是一个单一的实时操作系统内核,它也是一个完整的应用系统,包含了实时、嵌入式系统相关的各个组件:TCP/IP协议栈,文件系统...

Global site tag (gtag.js) - Google Analytics