Verschiedene Threads in Java

In Java, threads can have States. The Thread. State enum defines the different states that a Java thread can have. This enum defines the following values –

NEW RUNNABLE BLOCKED WAITING TIMED_WAITING TERMINATED In the subsequent sections, I provide a brief overview of these states along with possible transitions between them.

States of a Java Thread NEW This is the default state a thread gets when it is first created.

RUNNABLE As soon as a thread starts executing, it moves to the RUNNABLE state. Note that a thread that is waiting to acquire a CPU for execution is still in this state.

BLOCKED A thread moves to the BLOCKED state as soon as it gets blocked waiting for a monitor lock. This can happen in one of the following two ways –

It’s waiting to acquire a lock to enter a synchronised block/method. It’s waiting to reacquire the monitor lock of an object on which it invoked the Object.wait method. WAITING A thread moves to this state as a result of invoking one of the following methods –

Object.wait without a timeout Thread.join without a timeout LockSupport.park TIMED_WAITING A thread moves to this state as a result of invoking one of the following methods –

Thread.sleep Object.wait with a timeout Thread.join with a timeout LockSupport.parkNanos LockSupport.parkUntil TERMINATED As soon as a thread terminates, it moves to this state.

Possible state transitions The following diagram shows the possible transitions between different states –

Java Threads

As soon as a thread gets scheduled for execution, it moves to the RUNNABLE state. This transition has been shown with the first arrow (marked as 1).

From the RUNNABLE state, a thread can move to any of the BLOCKED, WAITING, TIMED_WAITING, or TERMINATED state. Theoretically speaking, if a thread does not wait to acquire any lock, or does not sleep, or does not invoke any of the methods which makes it wait, it just finishes its execution and directly goes to the TERMINATED state (marked as 2d).

Of course in a practical application, the above scenario is highly unlikely. Often a thread tries to acquire a lock, in which case it moves to the BLOCKED (marked as 2a) state if it has to wait for the lock. Threads also explicitly wait for some preconditions to be true/actions from other threads, in which case they move to the WAITING (marked as 2b) or the TIMED_WAITING (marked as 2c) state, depending on whether the waits were timed or not.

Once a thread moves to the BLOCKED state, the only possible transition that is allowed next is to move to the RUNNABLE state (marked as 3d).

Similarly, the only possible transition from the WAITING state is to move to the BLOCKED state (marked as 3c).

Please note that some of the articles on the internet incorrectly adds a transition from the WAITING to the RUNNABLE state. This is just not correct. A thread can never move to the RUNNABLE state from the WAITING state directly. We can understand the reason for this with an example.

Suppose that we have a thread T which is currently in the RUNNABLE state and holds the monitor lock of three objects a, b, and c, as shown in the diagram below – state-transitions.png

Java Threads At this point, T invokes c.wait(), after which it no longer holds the monitor lock of object c – before-invoking-wait.png

Java Threads As soon as T is notified using an invocation of notify/notifyAll, it stops waiting and competes with other threads (let’s say, X and Y) to acquire the monitor lock of c – after-invoking-wait.png

Java Threads after-invoking-wait-compete.png

which, according to the definitions above, is the BLOCKED state. Only after acquiring the monitor lock of c, T moves to the RUNNABLE state. Similar reasoning can be applied for the Thread.join() (which internally uses Object.wait()) and LockSupport.park().

Let’s get back to our original state transition diagram. As we can see, a thread can move to either the RUNNABLE (marked as 3b) or the BLOCKED (marked as 3a) state from the TIMED_WAITING state. The transition to RUNNABLE is possible in this case because a thread can enter the TIMED_WAITING state after invoking the Thread.sleep method, in which case it retains all the monitor locks it currently holds.

As a thread finishes execution after moving back and forth between the RUNNABLE, BLOCKED, WAITING or TIMED_WAITING state, it moves to the TERMINATED state once and for all.

How do we get the current state of a Thread? We can use the Thread.getState() method to retrieve the current state of a thread. We can use this value to monitor or debug any concurrency issues that our application might face in production.

Source:

Java training institute in chennai

Recommended Posts

Verschiedene Threads in Java
Partisierung in Java
Änderungen in Java 11
Janken in Java
Über Java-Threads
Umfangsrate in Java
FizzBuzz in Java
Verschiedene Dinge wie Bitflags in Java
Interpreter-Implementierung durch Java
Machen Sie einen Blackjack mit Java
Janken App in Java
Einschränkungsprogrammierung in Java
Setzen Sie Java8 in Centos7
NVL-artiger Typ in Java
"Hallo Welt" in Java
Aufrufbare Schnittstelle in Java
Parallele und parallele Verarbeitung in verschiedenen Sprachen (Java Edition)
Kommentare in der Java-Quelle
Azure funktioniert in Java
Formatieren Sie XML in Java
Einfache HTML-Spezialchars in Java
Boyer-Moore-Implementierung in Java
Verschiedene Renten in Japan
Verwenden Sie OpenCV mit Java
WebApi-Memorandum mit Java
Typbestimmung in Java
Befehle in Java ausführen (Ping)
Implementierung der Heap-Sortierung (in Java)
Zabbix API in Java
ASCII-Kunst in Java
Listen in Java vergleichen
POST JSON in Java
Fehler in Java ausdrücken
Erstellen Sie JSON in Java
Datumsmanipulation in Java 8
Was ist neu in Java 8?
Java zufällig, verschiedene Verarbeitung
Verwenden Sie PreparedStatement in Java
Was ist neu in Java 9,10,11
Parallele Ausführung in Java
Versuchen Sie, synchronisierte Methoden aus mehreren Threads in Java aufzurufen
Versuchen Sie es mit RocksDB mit Java
Lesen Sie Binärdateien in Java 1
Vermeiden Sie den Fehler, den Yuma in Java gemacht hat
Holen Sie sich EXIF-Informationen in Java
[Neta] Sleep Sort in Java
Bearbeiten von ini in Java: ini4j
Java-Geschichte in dieser Welt
Segfo Java in 6 Zeilen
Argumente variabler Länge in verschiedenen Sprachen
Lassen Sie uns Spresense mit Java entwickeln (1)
Probieren Sie den Funktionstyp in Java aus! ①
Ich habe ein Roulette in Java gemacht.
Implementierung der zweistufigen Authentifizierung in Java
Schreiben Sie Flyway-Rückrufe in Java
Importieren Sie Excel-Daten mit Java 2
Ändern Sie die Java-Codierung in Windows