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
Trying to convert Java list to map

I want to convert the list to map.As the result value is listed, {a=1,b=2}, {a=3,b=5} appears Turning to the For door For(int i=0; i<= list.size(); i++) { Map.put(a, list.get(i)) Map.put(b,list.ge...

2 years ago

1 answers
29 views
0
I'm learning a simple Java iteration, but I'm not sure about the increment or decrease operator

public class Main { public static void main(String[] args) int i=1,sum=0; while(i<=6) { sum+=i++; } System.out.println (the sum of 1 to 6 is +sum); }}It's a code to find the sum of 1 to 6, b...

2 years ago

1 answers
118 views
0
I have a question regarding the JSP mapper condition.

I'm developing a shopping mall web. I'd like to add a page-nation function to the page that displays the latest products.Then condition in the mapper is I think we need to add 2 more. <select id=na...

2 years ago

1 answers
34 views
0
Baekjun 12865 Backpack Problem

The first line is given the number of articles N (1 ) N 100 100) and the weight K (1 K K 100 100,000) that Junseo can withstand. From the second line through N lines, each item is given a weight W (1 ...

2 years ago

1 answers
25 views
0
Save JAVA Variables

public static void main(String args[]) { Scanner scanner = new Scanner(System.in); String name = scanner.next(); System.out.println (Name: + name); int number = scanner.nextInt(); System.out.printl...

2 years ago
« - 150 -

© 2024 OneMinuteCode. All rights reserved.