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
128 views
0
be processed after the loop of the for statement ends

I am programming on Android Studio.From the list containing random numbers, take the value with a for statement and pass the action with a switch statement.There is a part called button.setBackgroundC...

1 years ago

1 answers
55 views
0
Understanding the Scope of Multi-Threaded Variables

Thank you for your help.Regarding the subject, under the multi-threaded environment of javaConcurrentModificationException occurred because of using the instance variable in new ArrayList().Also, I he...

1 years ago

1 answers
34 views
0
Is the implementation of the interface related to is-a?

Is the interface and its implementation class related to is-a?

1 years ago

2 answers
34 views
0
ARRANGEMENT TYPE PROCESSING METHOD HAVING CHARACTER STRING TYPE IN ARGUMENT AND CHARACTER STRING TYPE IN

I'd like to create a user-defined method.I don't know what to do with the description of the caller of the method.Also, I am not sure if the method definition is correct, so please let me know.Details...

1 years ago

1 answers
78 views
0
How to Automate Cache Busting in JavaScript

Nice to meet you.I've been looking into many things, but it's boiling down, so I'd like to ask you a question.We are developing using Spring in Java 8.The JS framework is AngularJS (1 series).What I w...


2 answers
35 views
0
Java:how to find the class with the interface implemented

I want to get a class using interfacepublic interface IExtension { String getName(); String getVersion(); } public class AExtension implements IExtension { @ Override public String getName() { return ...

1 years ago

1 answers
36 views
0
How to Determine if Java Is an Empty

I'd like to determine if the value of val is empty.I don't understand the difference between the two if statements below.Do they both have the same meaning?Is it better not to use != or == for referen...

1 years ago

1 answers
38 views
0
If you type Japanese into a transparent JFrame, the background will turn white.

If you enter Japanese into JTextArea with JFrame transparent, the frame will turn white.Once it turns white, it remains white unless it is redisplayed.Does anyone know how to avoid this phenomenon?pub...

1 years ago

1 answers
41 views
0
Java resource leak '' will not close.

public class Practice 7 { public static void main(String[]args) { int num1 = new java.util.Scanner(System.in).nextInt(); int num2 = new java.util.Scanner(System.in).nextInt(); System.out.println(num1+...

1 years ago

1 answers
40 views
0
I want to repeat the status display in the switch statement.

I am currently creating a character development game on java.Compile and Enter the option to branch the switch so that points are added to each option.When I enter the selection number, I want to disp...

1 years ago
« - 13 - »

© 2024 OneMinuteCode. All rights reserved.