Understanding java's native threads and the jvm

前端 未结 4 1537
死守一世寂寞
死守一世寂寞 2020-12-13 02:52

I understand that the jvm is itself an application that turns the bytecode of the java executable into native machine code, but when using native threads I have some questio

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-13 03:20

    Java threads are mapped to native OS threads. They have little to do with the JVM itself.

提交回复
热议问题