简体   繁体   中英

what does it means by “recompile source code?” in java

I have read following:

"Active mq requires JRE or JDk (a JDK is required if you plan to recompile source code)"

My question is, what does it means by "recompile source code?"

It means that if you want to download the source code yourself and compile it yourself, you need the JDK. The JRE (Java Runtime Environment) can run Java code, but to compile Java code you need the JDK (Java Development Kit).

Compiling Java source code is the act of turning Java code as written by programmers into Java Byte Code by the JVM which can then be run by the JRE on any machine.

To "re-compile" means to restart this process. For us as programmers working in an IDE it means that we just save the newly changed code and press the compile icon.

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