Creating a Thread : Create Thread « Thread « Java Tutorial






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.Create Thread
10.1.1.Creating a Thread
10.1.2.Creating Thread: Deriving a Subclass of Thread
10.1.3.Creating Thread Objects: Implementing the run() Method in Runnable interface
10.1.4.Create a second thread.
10.1.5.Create a second thread by extending Thread
10.1.6.Create multiple threads.