Building vs. Compiling (Java)

后端 未结 8 1036
心在旅途
心在旅途 2020-12-12 08:47

Thinking that the answer to this is pretty obvious but here it goes:

When I am working on a small project for school (in java) I compile it.

On my

8条回答
  •  不思量自难忘°
    2020-12-12 09:18

    In simple words

    Compilation translates java code (human readable) into bytecode, so the Virtual machine understands it.

    Building puts all the compiled parts together and creates (builds) an executable.

提交回复
热议问题