Documentation

The Java™ Tutorials
Hide TOC
Thread Objects线程对象
Trail: Essential Java Classes
Lesson: Concurrency

Thread Objects线程对象

Each thread is associated with an instance of the class Thread. 每个线程都与类Thread的一个实例相关联。There are two basic strategies for using Thread objects to create a concurrent application.使用Thread对象创建并发应用程序有两种基本策略。

This section documents the use of Thread objects. 本节介绍Thread对象的使用。Executors are discussed with other high-level concurrency objects.将与其他高级并发对象讨论执行器。


Previous page: Processes and Threads
Next page: Defining and Starting a Thread