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
25 views
0
This is a question related to the Java buffered reader output.

To solve Baekjun's problem, I wrote the following code to find out about bufferedReader. int C; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); C = Integer.parseInt(br.readL...

2 years ago

1 answers
25 views
0
Java Example Pool Questions

class X { public void f( ) { System.out.print(1); } public static void g() { System.out.print(2); }}class Y extends X{ public void f( ) { System.out.print(3); }}class Z extends Y { public static void...

2 years ago

1 answers
27 views
0
Java Example Pool Questions

class X { public void f( ) { System.out.print(1); } public static void g() { System.out.print(2); }}class Y extends X{ public void f( ) { System.out.print(3); }}class Z extends Y { public static void...

2 years ago

1 answers
31 views
0
Java Example Pool Questions

class X { public void f( ) { System.out.print(1); } public static void g() { System.out.print(2); }}class Y extends X{ public void f( ) { System.out.print(3); }}class Z extends Y { public static void...

2 years ago

1 answers
19 views
0
Java Example Pool Questions

class X { public void f( ) { System.out.print(1); } public static void g() { System.out.print(2); }}class Y extends X{ public void f( ) { System.out.print(3); }}class Z extends Y { public static void...

2 years ago

1 answers
21 views
0
Java Example Pool Questions

class X { public void f( ) { System.out.print(1); } public static void g() { System.out.print(2); }}class Y extends X{ public void f( ) { System.out.print(3); }}class Z extends Y { public static void...

2 years ago

1 answers
95 views
0
Abstract Class Creator Question

In the case of an abstract class, it is not created, so we know that the subclass creates and calls the constructor of the abstract class using the super method.public class MainClass { public static ...

2 years ago

3 answers
26 views
0
I'm studying Java. Is there a way to use System.out.print comfortably?

In c++, I wrote using namespace std as cout comfortably, but is there any way?

2 years ago

1 answers
102 views
0
Console window error when executing eclipse project

When executing the eclipse project, From the console No core dump will be written. Minidumps are not enabled by default on client versions of WindowsThis kind of error occurs. If you know, please tell...


1 answers
54 views
0
Coding to place the array upside down using Java list's sublist

I wrote two functions that put the list upside down and turned them around to test them in the main function.It seems that certain numbers are constantly added to the arr list in functions created usi...

2 years ago
« - 149 - »

© 2024 OneMinuteCode. All rights reserved.