Java Basic Tutorial
Java Advance Tutorial
A thread in Java is a lightweight process that runs independently and concurrently with other threads. Java provides built-in support for multithreading, which helps improve performance by executing multiple tasks in parallel.
There are two main ways to create a thread in Java:
Thread
Classstart()
starts a new thread and calls the run()
method asynchronously.sleep(500)
makes the thread pause for 500ms.Try it yourself
Runnable
Interface (Recommended):Try it yourself
✅ Why use Runnable
instead of Thread
?
Runnable
is more flexible (allows extending another class if needed).
Method |
Description |
---|---|
start() |
Starts a new thread and calls |
run() |
Defines the task to be executed in the thread. |
sleep(ms) |
Pauses the thread for the specified milliseconds. |
join() |
Waits for a thread to finish before continuing. |
isAlive() |
Checks if the thread is still running. |
interrupt() |
Interrupts a sleeping or waiting thread. |
Try it yourself
When multiple threads access a shared resource, race conditions may occur. We can prevent this using synchronized methods.
Try it yourself