Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

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.
Updated on: 2019-07-30T22:30:20+05:30

388 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements