How exactly does java compilation take place?

前端 未结 9 992
执笔经年
执笔经年 2020-12-07 07:56

Confused by java compilation process

OK i know this: We write java source code, the compiler which is platform independent translates it into bytecode, then the jvm

9条回答
  •  暖寄归人
    2020-12-07 08:33

    1. .java file
    2. compiler(JAVA BUILD)
    3. .class(bytecode)
    4. JVM(system software usually build with 'C')
    5. OPERATING PLATFORM
    6. PROCESSOR

提交回复
热议问题