Frage

When I use several threads in my Java application, dies the VM automatically run these threads on different cores?

War es hilfreich?

Lösung

The JVM isn't involved in that decision (any more, it was way back in Java 1.2). It's down to the OS now. So if you're using multiple threads, the OS can put them on different cores depending on its scheduling algorithms. (See also this question and its answers.)

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top