Home  >  Article  >  Java  >  What does java mean?

What does java mean?

(*-*)浩
(*-*)浩Original
2019-11-14 09:42:197903browse

Java generally represents a computer programming language and is an object-oriented programming language. Compared with C, it not only inherits its advantages, but Java will also compare with C Difficult concepts have been eliminated, making it easier to use.

What does java mean?

The Java language, as a representative of static object-oriented programming languages, has excellently implemented the object-oriented theory. Allow programmers to perform complex programming with elegant thinking.

Java has the characteristics of simplicity, object-oriented, distributed, robustness, security, platform independence and portability, multi-threading, and dynamics. Java can write desktop applications, Web applications, distributed systems and embedded system applications, etc. (Recommended learning: java course)

Programming environment

JDK (Java Development Kit) is called Java Development Kit Or Java Development Tools, a program development environment for writing Java Applets and applications. JDK is the core of the entire Java, including the Java Runtime Environment (Java Runtime Envirnment), some Java tools and Java core class libraries (Java API).

Any Java application server essentially has a certain version of JDK built-in. The mainstream JDK is the JDK released by Sun. In addition to Sun, many companies and organizations have developed their own JDKs, such as JDK developed by IBM, Jrocket by BEA, and JDK developed by the GNU organization.

In addition, the Java SE API subset and Java virtual machine in the Java API class library can be collectively referred to as JRE (JAVA Runtime Environment). JRE supports the running of Java programs. Standard environment.

JRE is a running environment, and JDK is a development environment. Therefore, JDK is needed when writing Java programs, and JRE is needed when running Java programs.

The JDK already contains JRE, so as long as the JDK is installed, you can edit Java programs and run Java programs normally. However, since JDK contains a lot of content that has nothing to do with running and takes up a lot of space, you do not need to install JDK to run ordinary Java programs, but only need to install JRE.

Programming Tools

Eclipse: an open source, Java-based extensible development platform.

NetBeans: Open source Java integrated development environment, suitable for various client and Web applications.

IntelliJ IDEA: It has very good functions in automatic code prompts, code analysis, etc.

MyEclipse: A commercial software developed by Genuitec, it is a widely used integrated development environment for Java applications.

EditPlus: If the Java compiler "Javac" and the interpreter "Java" are correctly configured, you can directly use EditPlus to compile and execute Java programs.

The above is the detailed content of What does java mean?. 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