langage Java - significado y definición. Qué es langage Java
Diclib.com
Diccionario ChatGPT
Ingrese una palabra o frase en cualquier idioma 👆
Idioma:

Traducción y análisis de palabras por inteligencia artificial ChatGPT

En esta página puede obtener un análisis detallado de una palabra o frase, producido utilizando la mejor tecnología de inteligencia artificial hasta la fecha:

  • cómo se usa la palabra
  • frecuencia de uso
  • se utiliza con más frecuencia en el habla oral o escrita
  • opciones de traducción
  • ejemplos de uso (varias frases con traducción)
  • etimología

Qué (quién) es langage Java - definición

OBJECT-ORIENTED PROGRAMMING LANGUAGE
Java (software); Java language; Java computer language; Java programming; Javax; Java (language); Java games; Java prog; Java source code; Java programming language; Java Programing Languge; Flow Java; Java (programming); Java Language Specification; Java language specification; Java code; Openframe; Java Programming; Java technology; Java (Programming language); Java for Windows; Notifyall; Tostring; JPD (file format); The Java Posse; Java Posse; Java (Programming Language); Java (langage); Javalang; History of Java (programming language); History of the Java programming language; @java
  • Duke, the Java mascot
  • [[James Gosling]], the creator of Java, in 2008
  • Dependency graph of the Java Core classes (created with jdeps and [[Gephi]])
  • programming language popularity index]] graph from 2002 to 2022. Java was steadily on the top from mid-2015 to early 2020.

Java         
  • Alas Purwo]], eastern edge of Java
  • The 9th century [[Borobudur]] Buddhist [[stupa]] in Central Java
  • [[Parahyangan]] highland near [[Buitenzorg]], {{circa}} 1865–1872
  • Dutch colonial period]], in or before 1926
  • [[Cangkuang]] Hindu temple, a shrine for [[Shiva]], dated from the 8th century, the [[Galuh Kingdom]]
  • [[Betawi mask dance]] (''Tari Topeng Betawi'')
  • [[Jakarta]], the capital of [[Indonesia]]
  • Ujung Kulon]]; it is the world's rarest rhino.
  • Java transport network
  • 450px
  • Betawi]], the local dialect as one of Malay creole dialect.
  • rice fields]] near [[Salatiga]], in [[Central Java]]
  • "Welcome!" statue]] in [[Central Jakarta]]
  • [[Mount Bromo]] in [[East Java]]
  • Shinta]] in [[Ramayana]] ballet at [[Prambanan]], Java
  • [[SambaSunda]] music performance, featuring traditional [[Sundanese music]] instruments
  • [[Mount Sumbing]] surrounded by rice fields. Java's volcanic topography and rich agricultural lands are the fundamental factors in its history.
  • Japanese prepare to discuss surrender terms with British-allied forces in Java, 1945.
  • British Occupation of Java; men of the Bengal Sappers and Miners burn houses in the village of Bekasi as a reprisal for the murder of five members of the Royal Air Force and twenty Maharatta riflemen whose Dakota transport aircraft crash-landed near the village.
ISLAND OF INDONESIA, SOUTHEAST ASIA
Java, Indonesia; Java Island; Djawa; Jawa Dwipa; Java (island); ID-JW; Java island; Jawa (Indonesia); Jawa (island); Jawa, Indonesia; Java-Indonesia; Island of Java; ꦗꦮ; Java (Indonesia); She-po; Shepo; Yawadwipa; Yavadwipa; Yavadvipa; Geography of Java
Java is a computer programming language. It is used especially in creating websites. (TRADEMARK)
N-UNCOUNT
Java         
  • Alas Purwo]], eastern edge of Java
  • The 9th century [[Borobudur]] Buddhist [[stupa]] in Central Java
  • [[Parahyangan]] highland near [[Buitenzorg]], {{circa}} 1865–1872
  • Dutch colonial period]], in or before 1926
  • [[Cangkuang]] Hindu temple, a shrine for [[Shiva]], dated from the 8th century, the [[Galuh Kingdom]]
  • [[Betawi mask dance]] (''Tari Topeng Betawi'')
  • [[Jakarta]], the capital of [[Indonesia]]
  • Ujung Kulon]]; it is the world's rarest rhino.
  • Java transport network
  • 450px
  • Betawi]], the local dialect as one of Malay creole dialect.
  • rice fields]] near [[Salatiga]], in [[Central Java]]
  • "Welcome!" statue]] in [[Central Jakarta]]
  • [[Mount Bromo]] in [[East Java]]
  • Shinta]] in [[Ramayana]] ballet at [[Prambanan]], Java
  • [[SambaSunda]] music performance, featuring traditional [[Sundanese music]] instruments
  • [[Mount Sumbing]] surrounded by rice fields. Java's volcanic topography and rich agricultural lands are the fundamental factors in its history.
  • Japanese prepare to discuss surrender terms with British-allied forces in Java, 1945.
  • British Occupation of Java; men of the Bengal Sappers and Miners burn houses in the village of Bekasi as a reprisal for the murder of five members of the Royal Air Force and twenty Maharatta riflemen whose Dakota transport aircraft crash-landed near the village.
ISLAND OF INDONESIA, SOUTHEAST ASIA
Java, Indonesia; Java Island; Djawa; Jawa Dwipa; Java (island); ID-JW; Java island; Jawa (Indonesia); Jawa (island); Jawa, Indonesia; Java-Indonesia; Island of Java; ꦗꦮ; Java (Indonesia); She-po; Shepo; Yawadwipa; Yavadwipa; Yavadvipa; Geography of Java
<programming, language, portability> (After the Indonesian island, a source of programming fluid) A simple, object-oriented, distributed, interpreted, robust, secure, architecture-neutral, portable, multithreaded, dynamic, buzzword-compliant, general-purpose programming language developed by Sun Microsystems in the early 1990's (initially for set-top television controllers), and released to the public in 1995. Java first became popular by being the earliest portable dynamic client-side content for the World-Wide Web in the form of platform-independent Java "applets". In the late 1990's and into the 2000's it has also become very popular on the server side, where an entire set of APIs defines the J2EE. Java is both a set of public specifications (controlled by Sun Microsystems through the JCP) and a series of implementations of those specifications. Java is syntactially similar to C++ without user-definable operator overloading, (though it does have method overloading), without multiple inheritance, and extensive automatic coercions. It has automatic garbage collection. Java extends C++'s object-oriented facilities with those of Objective C for dynamic method resolution. Whereas programs in C++ and similar languages are compiled and linked to platform-specific binary executables, Java programs are typically compiled to portable architecture-neutral bytecode or ".class" files, which are run using a {Java Virtual Machine}. The JVM is also called an interpreter, though it is more correct to say that it uses {Just-In-Time Compilation} to convert the bytecode into native {machine code}, yielding greater efficiency than most interpreted languages, rivalling C++ for many long-running, non-GUI applications. The run-time system is typically written in POSIX-compliant ANSI C or C++. Some implementations allow Java class files to be translated into native machine code during or after compilation. The Java compiler and linker both enforce {strong type checking} - procedures must be explicitly typed. Java supports the creation of virus-free, tamper-free systems with authentication based on public-key encryption. Java has an extensive library of routines for all kinds of programming tasks, rivalling that of other languages. For example, the "java.net} package supports TCP/IP protocols like HTTP and FTP. Java applications can access objects across the Internet via URLs almost as easily as on the local file system. There are also capabilities for several types of distributed applications. The Java GUI libraries provide portable interfaces. For example, there is an abstract Window class and implementations of it for Unix, Microsoft Windows and the Macintosh. The "java.awt" and "javax.swing" classes can be used either in Web-based "Applets" or in client-side or "desktop" applications. There are also packages for developing XML applications, web services, servlets and other web applications, security, date and time calculations and I/O formatting, database (JDBC), and many others. Java is not directly related to JavaScript despite the name. http://java.sun.com/. Usenet newsgroup: news:comp.lang.java. (2005-01-21)
java         
  • Alas Purwo]], eastern edge of Java
  • The 9th century [[Borobudur]] Buddhist [[stupa]] in Central Java
  • [[Parahyangan]] highland near [[Buitenzorg]], {{circa}} 1865–1872
  • Dutch colonial period]], in or before 1926
  • [[Cangkuang]] Hindu temple, a shrine for [[Shiva]], dated from the 8th century, the [[Galuh Kingdom]]
  • [[Betawi mask dance]] (''Tari Topeng Betawi'')
  • [[Jakarta]], the capital of [[Indonesia]]
  • Ujung Kulon]]; it is the world's rarest rhino.
  • Java transport network
  • 450px
  • Betawi]], the local dialect as one of Malay creole dialect.
  • rice fields]] near [[Salatiga]], in [[Central Java]]
  • "Welcome!" statue]] in [[Central Jakarta]]
  • [[Mount Bromo]] in [[East Java]]
  • Shinta]] in [[Ramayana]] ballet at [[Prambanan]], Java
  • [[SambaSunda]] music performance, featuring traditional [[Sundanese music]] instruments
  • [[Mount Sumbing]] surrounded by rice fields. Java's volcanic topography and rich agricultural lands are the fundamental factors in its history.
  • Japanese prepare to discuss surrender terms with British-allied forces in Java, 1945.
  • British Occupation of Java; men of the Bengal Sappers and Miners burn houses in the village of Bekasi as a reprisal for the murder of five members of the Royal Air Force and twenty Maharatta riflemen whose Dakota transport aircraft crash-landed near the village.
ISLAND OF INDONESIA, SOUTHEAST ASIA
Java, Indonesia; Java Island; Djawa; Jawa Dwipa; Java (island); ID-JW; Java island; Jawa (Indonesia); Jawa (island); Jawa, Indonesia; Java-Indonesia; Island of Java; ꦗꦮ; Java (Indonesia); She-po; Shepo; Yawadwipa; Yavadwipa; Yavadvipa; Geography of Java
['d??:v?]
¦ noun N. Amer. informal coffee.
Origin
C19: from the fact that coffee is grown on the island of Java.

Wikipedia

Java (programming language)

Java is a high-level, class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. It is a general-purpose programming language intended to let programmers write once, run anywhere (WORA), meaning that compiled Java code can run on all platforms that support Java without the need to recompile. Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM) regardless of the underlying computer architecture. The syntax of Java is similar to C and C++, but has fewer low-level facilities than either of them. The Java runtime provides dynamic capabilities (such as reflection and runtime code modification) that are typically not available in traditional compiled languages. As of 2019, Java was one of the most popular programming languages in use according to GitHub, particularly for client–server web applications, with a reported 9 million developers.

Java was originally developed by James Gosling at Sun Microsystems. It was released in May 1995 as a core component of Sun Microsystems' Java platform. The original and reference implementation Java compilers, virtual machines, and class libraries were originally released by Sun under proprietary licenses. As of May 2007, in compliance with the specifications of the Java Community Process, Sun had relicensed most of its Java technologies under the GPL-2.0-only license. Oracle offers its own HotSpot Java Virtual Machine, however the official reference implementation is the OpenJDK JVM which is free open-source software and used by most developers and is the default JVM for almost all Linux distributions.

As of March 2023, Java 20 is the latest version, while Java 17, 11 and 8 are the current long-term support (LTS) versions.