创建一个线程 : 创建线程 « 线 « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » 线 » 创建线程 
10. 1. 1. 创建一个线程

A thread is a basic processing unit to which an operating system allocates processor time, and more than one thread can be executing code inside a process. (Java 5: A Beginner's Tutorial by Budi Kurniawan Brainy Software Corp. 2006

Every Java program has at least one thread, the thread that executes the Java program. It is created when you invoke the static main method of your Java class.

There are two ways to create a thread.

  1. Extend the java.lang.Thread class
  2. Implement the java.lang.Runnable interface.
  1. Once you have a Thread object, you call its start method to start the thread.
  2. When a thread is started, its run method is executed.
  3. Once the run method returns or throws an exception, the thread dies and will be garbage-collected.

Every Thread has a state and a Thread can be in one of these six states.

  1. new. A state in which a thread has not been started.
  2. runnable. A state in which a thread is executing.
  3. blocked. A state in which a thread is waiting for a lock to access an object.
  4. waiting. A state in which a thread is waiting indefinitely for another thread to perform an action.
  5. timed__waiting. A state in which a thread is waiting for up to a specified period of time for another thread to perform an action.
  6. terminated. A state in which a thread has exited.

The values that represent these states are encapsulated in the java.lang.Thread.State enum. The members of this enum are NEW, RUNNABLE, BLOCKED, WAITING, TIMED__WAITING, and TERMINATED.

10. 1. 创建线程
10. 1. 1. 创建一个线程
10. 1. 2. 创建线程:派生线程的子类
10. 1. 3. Creating Thread Objects: Implementing the run() Method in Runnable interface
10. 1. 4. 创建第二个线程
10. 1. 5. 创建第二个线程派生线程的子类
10. 1. 6. 创建多个线程。
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.