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
40 views
0
Can anyone explain why the answer to the Hackerrank algorithm question is this?

https://www.hackerrank.com/challenges/java-output-formatting/problemThe problem link is above.import java.util.Scanner;public class Solution { public static void main(String[] args) { Scanner sc=new ...

2 years ago

1 answers
23 views
0
Constant Pool question in Java

While studying Java, I learned that it was Constant Pool.I thought that using Constant Pool and hashcode() I could find out the address of the String variable declared private, so I organized the code...

2 years ago

2 answers
23 views
0
I have a question about HASHCODE.

I have a question while studying HASHCODE.If you look at the code above, I'm overriding hashCode() It is possible to convert the string hash into an int-type and return it with the return hash.hashCod...

2 years ago

1 answers
24 views
0
I'd like to ask you a question about Java coding.

Hello, I'm a freshman who's posting on hash code for the first time.It's nothing elseThere's one task I have to do right now. What I can't solve isTake the array plate 10*10 and use the panel to move ...

2 years ago

1 answers
138 views
0
There was a problem writing the java math power function.

There is a situation where I have to use the java math.power function for the assignment. However, the input value should be put in the long type variable, but it seems that the desired value does not...

2 years ago

1 answers
100 views
0
Reads text files, organizes them in descending or ascending order, and outputs them back to the file

9 Kim Cheol-soo 72 10 Park Jae-yong 79 1 Na Young-hee 34 3 Lee Nayeon 46 I read the text file (class number, name, grade) in this way and based on the class number,After organizing them in descending ...

2 years ago

1 answers
26 views
0
Java Array Question

Java, let me ask you a quick question.static void test (int[] array, intk) { array[1]=100; k =100; } public static void main(String[] args) throws IOException { int[] in = new int[] {1,2,3,4,5,6}; ...

2 years ago

1 answers
72 views
0
[Android studio] The Alertdialog window is dark.

Here's the current situationJava code is Sagin.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { View dlgView = View.inflate(Activity2.this,ac2_sub,null); ...


1 answers
25 views
0
Java generic class array return function notation question

https://d2.naver.com/helloworld/1219I'm reading this post in the middle class ValueHolder<T>{ //generic class private T value; public ValueHolder(T value) { this.value = value; } public T get...

2 years ago

1 answers
25 views
0
This is a question related to the processing of java map.

I am studying java while playing javascript, and I have a question about the map.I receive an object list from the server, and I want to extract an object that corresponds to the desired key from the ...

2 years ago
« - 85 - »

© 2024 OneMinuteCode. All rights reserved.