Home  >  Article  >  Java  >  Is java a front-end?

Is java a front-end?

青灯夜游
青灯夜游Original
2019-11-16 14:07:175310browse

Java is not the front end, it is the back end. The Java language is one of the most common back-end development languages. Because of its ability to build multi-threads and its relatively neutral architecture, the Java language has been widely used in the development of large-scale Internet platforms.

Is java a front-end?

Java is an object-oriented programming language. It not only absorbs the various advantages of the C language, but also abandons the concepts such as multiple inheritance and pointers that are difficult to understand in C. Therefore, The Java language has two characteristics: powerful and simple to use. As a representative of static object-oriented programming languages, Java language perfectly implements object-oriented theory and allows programmers to perform complex programming with an elegant way of 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.

Java consists of four aspects:

  1. Java Programming Language

  2. Java Class File Format

  3. Java Virtual Machine

  4. Java Application Program Interface

When editing and running a Java program, you need to involve this at the same time Four aspects. Use text editing software (such as Notepad, WordPad, UltraEdit, etc.) or integrated development environment (Eclipse, MyEclipse, etc.) to define different classes in Java source files, by calling methods in the classes (these classes implement the Java API) Access the resource system, compile the source file to generate a binary intermediate code, store it in the class file, and then run the class file by running the Java virtual machine corresponding to the operating system platform environment, execute the bytecode generated by the compilation, and call The methods implemented in the class file satisfy the Java API calls of the program.

The above is the detailed content of Is java a front-end?. 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:Is java software?Next article:Is java software?