Each thread have a priority. Priorities are represented by a number between 1 and 10. In most cases, thread schedular schedules the threads according to their priority (known as preemptive scheduling). But it is not guaranteed because it depends on JVM specification that which scheduling it chooses. |
3 constants defiend in Thread class:
|
Default priority of a thread is 5 (NORM_PRIORITY). The value of MIN_PRIORITY is 1 and the value of MAX_PRIORITY is 10. |
Example of priority of a Thread:
Output:running thread name is:Thread-0 running thread priority is:10 running thread name is:Thread-1 running thread priority is:1
No comments:
Post a Comment