Javatpoint Logo
Javatpoint Logo

Multitasking in Java

In the world of software development, multitasking plays a crucial role in enhancing the performance and responsiveness of applications. It allows programs to execute multiple tasks concurrently, leading to efficient utilization of system resources. Java, being a popular programming language, provides robust mechanisms for multitasking through its concurrency features. In this section, we will explore multitasking in Java, understand its significance, and demonstrate its implementation with sample programs.

Understanding Multitasking:

Multitasking refers to the ability of a system to execute multiple tasks simultaneously or in overlapping time intervals. It can be achieved through two approaches: multitasking using multiple processes or multitasking using multiple threads. Java primarily focuses on multitasking using threads.

Threads in Java:

A thread is a lightweight unit of execution that operates independently and shares the same memory space with other threads within a process. Java provides comprehensive support for creating and managing threads through the java.lang.Thread class. Threads can be created by extending the Thread class or implementing the Runnable interface.

Program 1: Simple Thread Creation

Output:

Thread is running.

In the above program, we create a thread by extending the Thread class and overriding the run() method. Inside the run() method, we define the tasks to be executed by the thread. The start() method initiates the execution of the thread.

Program 2: Runnable Interface Implementation

Output:

Thread is running.

In the second program, we implement the Runnable interface and provide the implementation for the run() method. We then create a new thread, passing an instance of MyRunnable as a parameter to the Thread constructor. Finally, we start the thread using the start() method.

Thread Synchronization:

When multiple threads access shared resources simultaneously, it can lead to race conditions and data inconsistencies. To ensure thread safety and prevent such issues, Java provides synchronization mechanisms.

Program 3: Thread Synchronization

Output:

Counter value: 2000

In the above program, we have a Counter class with an increment() method that increments a private count variable. The increment() method is marked as synchronized, ensuring that only one thread can execute it at a time, preventing race conditions.

The SynchronizationDemoclass creates two instances of the IncrementThread, passing the same Counter object to both threads. Each thread increments the counter 1000 times. By using the join() method, we ensure that the main thread waits for both threads to complete before printing the final counter value.

Thread Pooling:

Creating a new thread for each task can be resource-intensive and inefficient. Java provides the Executor framework and thread pooling to address this issue. Thread pooling involves reusing a pool of threads to execute multiple tasks, reducing the overhead of creating and destroying threads.

Program 4: Thread Pooling

Output:

Task 0 is executing.
Task 1 is executing.
Task 2 is executing.
Task 3 is executing.
Task 4 is executing.

In the above program, we create a thread pool with a fixed size of 3 using the Executors.newFixedThreadPool() method. We then create 5 instances of the Task class, each representing a task to be executed. The execute() method of the ExecutorService is used to submit each task to the thread pool. Finally, we call shutdown() to gracefully shut down the thread pool.

In Summary, Multitasking is a powerful technique in Java that enables efficient utilization of system resources and enhances the performance of applications. In this article, we explored the fundamentals of multitasking in Java, including thread creation, synchronization, and thread pooling. By leveraging these features, developers can design and implement highly concurrent and responsive applications. Understanding and harnessing the power of multitasking is crucial for building robust and efficient software systems.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA