Home  >  Article  >  Java  >  What is the use of jdk?

What is the use of jdk?

藏色散人
藏色散人Original
2019-05-05 09:58:1611003browse

JDK is a Java language software development toolkit, mainly used for java applications on mobile devices and embedded devices. JDK is the core of the entire Java development. It includes the JAVA running environment (JVM Java system class library) and JAVA tools.

What is the use of jdk?

In short, JDK is a development toolbox provided to developers and is used by program developers. In addition to the complete JRE (Java Runtime Environment), it also includes other toolkits for developers.

JDK (Java Development Kit) is a software development kit (SDK) for the Java language.

SE (JavaSE), standard edition, standard edition, is the version we usually use. Starting from JDK 5.0, it was renamed Java SE.

EE (JavaEE), enterprise edition, enterprise edition, use this JDK to develop J2EE applications. Starting from JDK 5.0, it was renamed Java EE. Starting from February 26, 2018, J2EE was renamed Jakarta EE [1-2].

ME (J2ME), micro edition, is mainly used for java applications on mobile devices and embedded devices. Starting from JDK 5.0, it was renamed Java ME.

Without JDK, Java programs (referring to java source code .java files) cannot be compiled. If you want to only run Java programs (referring to class or jar or other archive files), make sure that the corresponding JRE is installed.

The above is the detailed content of What is the use of jdk?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to use paint in JavaNext article:How to use paint in Java