Ever think of focusing your attention on performing on a single task at a time and do it well? This is usually difficult as human nature is bound to perform multiple tasks at a time. Look around and you will observe that the human body performs a variety of task in parallel or you can say concurrently.
In a similar fashion, computers can also perform operations in concurrent manners. You can get the idea from the example that it is possible to send a file to a printer and receive an email over the same network concurrently. Those computers which have multiple processes can truly execute instructions concurrently.
Java enables concurrency through the language itself and APIs. A typical Java program can have multiple threads of execution, where each thread has its own method call, allowing the process to execute concurrently with other threads while sharing with them application-wide resources such as memory. This capability is called multi-threading.
There are many applications where concurrent programming is used. For example: when we download a large audio file or video file or a movie over the internet, one may not wait until the entire file downloads before starting the playback. To manage this problem, multiple threads are used, one to download the file and the other one to play the file. Both of these activities proceed concurrently. To avoid inconsistency in playback, threads are synchronized so that player thread doesn’t begin until there is sufficient amount of data is available in the memory to keep the thread (player) busy.
To write multithreaded programs is a tricky process. As discussed, a human can perform functions concurrently but find it difficult to jump between parallel trains of thought. To understand, perform a little experiment: Open four books to introduction page i.e. the first page and try reading them concurrently. Read one paragraph from the first book, then one from the other books, one by one and then loop back to read the next paragraph from the first book to the fourth book. After this experiment, you will appreciate multithreading, switching from one book to the second and so on, reading the paragraph and understand, remembering the place in each of the book, moving the books closer which you are reading and pushing away the others which you are not reading, in all the chaos you are trying to comprehend the content of the books.
Java is one of the most commonly used and mature programming languages in the world of software development. Over the years like every programming language Java has evolved and now it has three different platforms and each addresses certain programming requirements.
Java is a multithreaded programming language. A multithread program is such a program which contains two or more parts that can run concurrently and each part or thread can handle different task to perform at the same time. A thread is a line of execution and the smallest piece of code that is dispatched by the scheduler. This independent part of a program is designed in such a way that each part is independent of the other part, and if any exception occurs it doesn’t affect other parts (thread).
Multithreading is a way to allow a program or a process to execute many tasks simultaneously by making optimal use of available resources especially when system has multiple CPU’s.
A thread follows a particular lifecycle which starts from the initiation/creation stage then move on to run and then finally it dies or destroyed. All these states are illustrated in the UML diagram as follows:
In Java, when we create threads instance they will have the same priority, which the processor will schedule without any specific order. It is important that we prioritize the threads. Important threads should always be given high priority as compared to less important threads. Most importantly, those threads which need to run quietly may only need the lowest priority. Priority can be controlled using the Java API’s. For this purpose we use Thread.setPriority () method.
Priority values are as follow:
Keep in mind that priority range of the threads should be in the range between minimum and maximum number.
Threads are Java language objects and can be created by using two different mechanisms.
In this method, we create a thread by defining a class that is derived from a thread. The run () method will override and contains the code that will be executed by a new thread. This method will be public with a void return type and should not take any arguments.
Actual Code:
Output:
Another Example:
The run () method contains the code that is executed inside the new thread. Once a thread is created one can start it by calling start () method.
Output:
In the above code as you can see Thread.currentThread () is used which returns a reference to that particular thread that is currently executing. While getName () method is being used to point out the current thread.
This is one of the easiest ways to create a thread. The runnable interface only contains one method i.e. run () method which will be included in the class during implementation.
Actual Code:
Output:
Another Example:
Output:
In the above piece of code, an instance of the class is created that implements Runnable interface and then passes that particular instance to Thread (Runnable target) constructor.
Simply, a thread can be defined by extending the java.lang.Thread class or by implementing the java.lang.Runnable interface.
In case of thread method, where we have to extend from the Thread class is very limited due to the fact that once we extend our class from Thread, you cannot extend anymore from any other class as Java doesn’t support multiple inheritances. If we follow good coding practices then inheritance is meant for extending the parent class functionality to the child class, but in case of thread, once they are created, one cannot extend the functionality of thread class, we just provide the implementation of run () method.
It is recommended that developers should use Runnable object to create threads. This is much flexible method and allows your class to extend from any other class.
Write a comment