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
437 views
0
How to display the Android app permissions screen

Please tell me how to display the attached image.If you search for permissions by displaying a dialog, you will find a way to ask for permission.I would like to display the attached image screen, whic...

1 years ago

2 answers
369 views
0
Understanding Instance Identification from Member Variables

I want to identify the instance where the variable is stored from the member variable.For example, if you create the following instance, can you identify other member variables from StudentID1 to the ...

1 years ago

2 answers
342 views
0
Understanding Instance Identification from Member Variables

I want to identify the instance where the variable is stored from the member variable.For example, if you create the following instance, can you identify other member variables from StudentID1 to the ...

1 years ago

2 answers
386 views
0
Understanding Instance Identification from Member Variables

I want to identify the instance where the variable is stored from the member variable.For example, if you create the following instance, can you identify other member variables from StudentID1 to the ...

1 years ago

2 answers
303 views
0
Understanding Instance Identification from Member Variables

I want to identify the instance where the variable is stored from the member variable.For example, if you create the following instance, can you identify other member variables from StudentID1 to the ...

1 years ago

1 answers
346 views
0
Questions about Java methods. Please tell me how to write the following.

】List of animals and song brVerbs such as animal 'sound' dog barkcat meowBird sing (singing) Sheep bleat Pig grunt I would like to see the following on the console:My name is Taro Yamada!From now on, ...

1 years ago

1 answers
391 views
0
I have a question regarding the use of java library when doing a coté.

Hi, everyone. Can I use any library when I coat with java?For example, if you have a problem with sorting, use Arrays.sort()Use Map = new TreeMap<>(Collections.reversOrder())). Is this not a pro...


1 answers
285 views
0
I have a question about the Java class. Please tell me how to write the following.

Use the Calendar class to get your birthday in the yyyy/MM/dd format under the following conditions:SimpleDateFormat sdf = new SimpleDateFormat(Describe the date format here;System.out.println(sdf.for...

1 years ago

1 answers
299 views
0
There is an error saying ArrayIndexOutOfBoundsException. Why is that?

public class Demo { public static void main(String[] args) { String who = args[0]; String what = args[1]; System.out.println(who + likes + what + .); }} Exception in thread main java.lang.ArrayIn...

1 years ago

1 answers
351 views
0
Main.java:6: error: illegal start of expression public class TestClass {^1 error.

I wrote this code in paiza, but it says Main.java:6:error:illegal start of expression public class TestClass {^1 error.Someone please explain.import java.util.*;public class Main { public static void ...

1 years ago
« - 4 - »

© 2024 OneMinuteCode. All rights reserved.