Can you explain the Java thread lifecycle?
Answer / nashiinformaticssolutions
In Java, a thread can exist in any of the following states. The states are as follows:
New: When a new thread is first created, it is always in the new state. For a thread in the new state, the function hasn't begun to execute because it hasn't been performed yet.
Active: When a thread invokes the start() method, it moves from the new state to the active state. The active state contains both the running state and the runnable state.
Blocked or Waiting: When a thread is not active for a period of time (but not forever), it is either in the blocked state or the waiting state.
Timed waiting is what happens when we apply the sleep() technique to a certain thread.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the differences between forwarding () method and sendredirect() methods?
What is the latest version of java?
What is Collection interface?
What is the default size of arraylist in java?
What is the difference between ArrayList and Vector? which one is better in Java
0 Answers SkillGun Technologies,
What is the program compilation process?
What are the skills required for core java?
Can we create an object of static class in java?
What is boolean strategy?
Can we inherit the constructor in a Class?please give one example.
Define how objects are stored in java?
Can we declare main () method as non static?