Multithreading in Java

A detailed guide on multithreading in Java, covering how to create and manage threads using `Thread` and `Runnable`, as well as how to synchronize data between threads.

In this article, we will explore how to handle multithreading in Java, including creating threads using Thread and Runnable. We will also learn how to synchronize threads to prevent data conflicts.

Java code

// Create a class implementing Runnable
class MyRunnable implements Runnable {
    private String threadName;

    public MyRunnable(String threadName) {
        this.threadName = threadName;
    }

    @Override
    public void run() {
        for (int i = 1; i <= 5; i++) {
            System.out.println(threadName + " is running: " + i);
            try {
                Thread.sleep(1000); // Pause for 1 second
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        System.out.println(threadName + " completed.");
    }
}

public class MultiThreadExample {
    public static void main(String[] args) {
        Thread thread1 = new Thread(new MyRunnable("Thread 1"));
        Thread thread2 = new Thread(new MyRunnable("Thread 2"));

        thread1.start();
        thread2.start();
    }
}

Detailed explanation

  • MyRunnable class: This class implements Runnable and defines the run method to specify the task that the thread will execute.
  • run method: Prints a message indicating the thread is running, loops 5 times with a 1-second delay between each iteration.
  • MultiThreadExample class: Creates two Thread objects (thread1 and thread2) and starts them using the start() method.

System Requirements:

  • Java JDK 8 or later

How to install Java:

Download and install the Java Development Kit (JDK) from Oracle Java SE.

Tips:

  • Avoid simultaneous access to shared variables between threads to prevent conflicts. Use the synchronized keyword if necessary.
  • Use ExecutorService to manage a large number of threads more efficiently.


Related

How to open Notepad using Java

This guide explains how to open the Notepad application using Java by utilizing `Runtime.getRuntime().exec()`. It demonstrates how Java can interact with the system to launch external programs.
How to UPDATE data in a MySQL database using Java

A guide on how to use Prepared Statements in Java to update data in a MySQL database table safely and effectively.
How to convert Unicode characters with accents to non-accented in Java

A guide on how to convert accented Unicode characters to non-accented characters in Java using `Normalizer` and regular expressions.
How to INSERT data into a MySQL database using Java

A guide on how to use Prepared Statements in Java to insert data into a table in a MySQL database safely and effectively.
How to use Selenium to inject JavaScript code into a website on Chrome

A guide on how to use Selenium in Java to inject JavaScript code into a webpage on the Chrome browser. This article will help you understand how to interact with the DOM via JavaScript.
How to Get JSON Data from API Using Java

This guide will show you how to use Java to send a GET request to an API and read the returned JSON data using HttpURLConnection.
List of Common Functions When Using Selenium Chrome in Java

This article lists commonly used functions in Selenium with ChromeDriver in Java, helping users quickly grasp basic operations for browser automation.
Generating Captcha in Java

A comprehensive guide on how to create a Captcha in Java to protect your application from automated activities and enhance security.
Guide to creating a multi-image upload form in Java

A step-by-step guide on how to create a multi-image upload form using Java with Spring Boot and the `Commons FileUpload` library. This tutorial covers setup and code examples.
How to automatically login to a website using Selenium with Chrome in Java

This article explains how to use Selenium with Chrome to automatically log into a website using Java. It covers how to interact with web elements to perform login actions on the user interface.

main.add_cart_success