0
What's java compiler?
2 ответов
+ 1
Java compiler converts your program into machine language (javabyte code)
+ 1
for java programs, there is 2 step process. 1.compile 2. running.
compiling can be done with javac which convert to intermediate byte code which is class file. running program with java class files make program to run.