To get the currently executing thread, use the static currentThread()
method of the Thread
class. This method returns a reference of the currently executing thread object.
package org.kodejava.example.lang;
public class GetCurrentThreadDemo {
public static void main(String[] args){
// Get the currently executing thread object
Thread thread = Thread.currentThread();
System.out.println("Id : " + thread.getId());
System.out.println("Name : " + thread.getName());
System.out.println("Priority: " + thread.getPriority());
}
}
The code snippet print the following output:
Id : 1
Name : main
Priority: 5
Latest posts by Wayan (see all)
- How do I create a generic class in Java? - January 1, 2021
- How do I convert java.util.TimeZone to java.time.ZoneId? - April 25, 2020
- How do I get a list of all TimeZones Ids using Java 8? - April 25, 2020