Home Java javaTutorial What does JAVA language mean?

What does JAVA language mean?

Jun 01, 2019 am 09:27 AM
java

What does JAVA language mean?

Java is a widely used computer programming language with cross-platform, object-oriented, and generic programming features. It is widely used in enterprise-level web application development and mobile applications. development.

James Gosling and others who worked for Sun Microsystems developed the prototype of the Java language in the early 1990s. It was initially named Oak and was targeted at programming languages ​​and applications for small systems such as home appliances. In the control and communication of household appliances such as televisions, telephones, alarm clocks, and toasters.

Because the market demand for these smart home appliances was not as high as expected, Sun gave up the plan. With the development of the Internet in the 1990s, Sun saw the prospects of Oak being used on the Internet, so it transformed Oak and officially released it under the name Java in May 1995. Java has developed with the rapid development of the Internet and has gradually become an important network programming language.

The style of the Java programming language is very close to the C language. It inherits the core of C language object-oriented technology, discards error-prone pointers and replaces them with references; removes the operator overloading and multiple inheritance features in C and replaces them with interfaces; adds a garbage collector function.

Generic programming, type-safe enumerations, variable-length parameters, and automatic loading/unboxing features were introduced in Java SE 1.5. Sun Microsystems' explanation of the Java language is: "The Java programming language is a simple, object-oriented, distributed, interpretable, robust, safe and system-independent, portable, high-performance, multi-threaded and dynamic language"

Java is different from general compiled languages ​​or interpreted languages. It first compiles the source code into bytecode, and then relies on virtual machines on various platforms to interpret and execute the bytecode, thus having the cross-platform feature of "write once, run anywhere".

In the early JVM, this reduced the running efficiency of Java programs to a certain extent. However, after the release of J2SE1.4.2, the running speed of Java has been greatly improved.

Different from traditional types, Sun regarded Java as an open technology when it launched it. Java development companies around the world are required to design Java software that is compatible with each other. "The Java language relies on the power of the group rather than the power of the company" is one of Sun's slogans and has been recognized by the majority of software developers.

This is completely different from the elite-focused and closed model advocated by Microsoft. In addition, Microsoft later launched the competing .NET platform and the C# language that imitates Java. Later, Sun was acquired by Oracle, and Java became an Oracle product.

Currently, most of the code for the mobile operating system Android is programmed in the Java programming language.

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

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Square Root in Java Square Root in Java Aug 30, 2024 pm 04:26 PM

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Random Number Generator in Java Random Number Generator in Java Aug 30, 2024 pm 04:27 PM

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Armstrong Number in Java Armstrong Number in Java Aug 30, 2024 pm 04:26 PM

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

See all articles