What does a JIT compiler do?

后端 未结 9 1299
孤街浪徒
孤街浪徒 2020-12-13 00:28

I was just watching the Google IO videos and they talked about the JIT compiler that they included in the android. They showed a demo of performance improvements thanks to t

9条回答
  •  醉梦人生
    2020-12-13 01:19

    Doubt Sir if javac is a Java compiler its role is to convert source code to byte code means .Class and then .class (byte code) is interpreted by Java interpretor (Java) means by JVM and JIT is the part of JVM then what is its actual work

提交回复
热议问题