문제

I would like to know who manages the threads created by the JVM in Java?

도움이 되었습니까?

해결책

The host operating system handles thread scheduling, preemption and the like in all recent HotSpot JVMs. The JVM only takes a direct hand in the decision to create and delete threads, and in the related area of synchronization.

다른 팁

JVM manages the thread on host operating system. and OS manages the JVM. Read this about the JVM thread behavior

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top