Briefly explain priority values among threads.

Briefly explain priority values among threads.



Answer: A thread has a default value of Thread.NORM_PRIORITY, but must be between Thread.MAX_PRIORITY and Thread.MIN.PRIORITY. The smaller the value, the more time the thread is given to execute, meaning it has more priority.


Learn More :

Multithreading and Concurrent Processing

Learn More Multiple Choice Question :