Title: Thread: working application using thread - Java Complete Course - Lesson 51
Duration: 11:10 minutes
Summary: A thread is a thread of execution in a program. The Java Virtual Machine allows an application to have multiple threads of execution running concurrently. Every thread has a priority. Threads with higher priority are executed in preference to threads with lower priority. Each thread may or may not also be marked as a daemon. When code running in some thread creates a new Thread object, the new thread has its priority initially set equal to the priority of the creating thread, and is a daemon thread if and only if the creating thread is a daemon. In this lesson, we are going to learn what the Thread is and how is working application using thread with Operating System. Thread has few no of priorities level and state as well.
Methodology of the development of example: Thread in java.
Technology Used: JAVA.
Keywords: JAVA, Java Virtual Machine, JDK 1.6, Thread.