Which method registers a thread in a thread scheduler?
Answers
Answered by
0
The start method creates a new thread, and in the process the thread will be registered with the scheduler. (However, the scheduler is a nebulous concept in Java. It is implied that one must exist, but its implementation and behavior are typically left to the host operating system.
Similar questions