What is the Thread class in Java?


The java.lang.Thread class is a thread of execution in a program. The Java Virtual Machine allows an application to have multiple threads of execution running concurrently. Following are the important points about Thread −

  1. Every thread has a priority. Threads with higher priority are executed in preference to threads with lower priority.
  2. Each thread may or may not also be marked as a daemon.

There are two ways to create a new thread of execution.

  1. One is to declare a class to be a subclass of Thread.
  2. Another way to create a thread is to declare a class that implements the Runnable interface.

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 30-Jul-2019

262 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements