java tag

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 and 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 2022, Java 18 is the latest version, while Java 17, 11 and 8 are the current long-term support (LTS) versions. Oracle released the last zero-cost public update for the legacy version Java 8 LTS in January 2019 for commercial use, although it will otherwise still support Java 8 with public updates for personal use indefinitely. Other vendors have begun to offer zero-cost builds of OpenJDK 18 and 8, 11 and 17 that are still receiving security and other upgrades.

Oracle (and others) highly recommend uninstalling outdated and unsupported versions of Java, due to unresolved security issues in older versions. Oracle advises its users to immediately transition to a supported version, such as one of the LTS versions (8, 11, 17).

Reference: WIKIPEDIA

1495 questions


1 answers
27 views
0
Forwarding of objects in Android (Java)?Reference...?

Um...I'm studying Android right now and I'm asking you a question because I'm confusedSituation? To explain Class mainActivity extends Activity { A a = new A(this); }Class A{ Activity activity; B b; p...

2 years ago

1 answers
103 views
0
What is the difference between break and continue?

Please tell me the difference between break and continue.

2 years ago

1 answers
24 views
0
java logical operator || I have a question

int x = 100;int y = 200;boolean result = false;result = x > y || y++ > 200;System.out.println(x > y || y++ > 200 = + result);|| The operator says that if either of them is true, it displa...

2 years ago

1 answers
46 views
0
Java Eclipse

I use the September 2018 version of Java EclipseIf you keep using it, this message keeps popping up. I think it's an internet error. What is this?And how do you solve it?

2 years ago

1 answers
24 views
0
Synchronization block and final of Java collection instance

Code: public class MainClass { //### public static final List<Integer> lst = Collections.synchronizedList(new ArrayList<>()); public static void main(String[] args) { for (int i = 0; i <...

2 years ago

1 answers
20 views
0
Java frequency output problem

I'm writing a code for how many times the numbers I've entered, but I don't know how to sort them in ascending orderArray.sort(arr); <- This code doesn't align wherever I put it.import java.util.Sc...

2 years ago

1 answers
113 views
0
Can I change List to int[]?

I'm learning Java. Can I change the list to int[]? There is a method called List.toArray(), but the return data type is Object[]. I want to get an Integer[] or an int[] What should I do?Right now, I'm...

2 years ago

1 answers
109 views
0
I'm asking you a question!

import java.util.Scanner;public class Pro06 {public static void main(String[] args) { System.out.print(Enter N:); Scanner sc = new Scanner(System.in); int N = sc.nextInt(); for(int i = N; i<0;i--) ...

2 years ago

1 answers
81 views
0
How do I access my MySQL database from Java?

How do I access my MySQL database from Java?

2 years ago

2 answers
133 views
0
How do you develop web applications and mobile together?

The web application is based on the Spring framework, and mobile wants to support Android for now.

2 years ago
« - 124 - »

© 2024 OneMinuteCode. All rights reserved.