This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
A thread, called as a lightweight process, is a single sequential flow of control within a program. You use threads to isolate tasks. The JVM allows an application to have multiple threads of execution running concurrently. Every thread has a priority. Threads with higher priority are executed in preference to threads with lower priority. There are two ways to create a new thread of execution. One is to declare a class to be a subclass of Thread. This subclass should override the run method of class Thread. An instance of the subclass can then be allocated and started. For e.g., a thread that does some computation
The following code would then create a thread and start it running:
The other way to create a thread is to declare a class that implements the Runnable interface thus implementing the run() method. An instance of the class can then be allocated, passed as an argument when creating Thread, and started. For e.g.
The following code would then create a thread and start it running: