简体   繁体   中英

JVM - How is non jit-compiled code run

I know that some piececes of the bytecode are compiled into assembly at runtime. However all resources that I read do not mention what happens to the rest of the code. Is it interpreted by c++?

The JIT compiler compiles the byte-code to native code for execution; if you're on a platform without a JIT then the byte-code is interpreted.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM