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
43 views
0
Java Array Basic Questions

class CodeRunner{ public static void main(String[] args){ char[] hex = {'C', 'A', 'F', 'E'}; String[] binary = {0000, 0001, 0010, 0011, 0100, 0101, 0110, 0111, 1000, 1001, 1010, 1011, 1100, 1101, 11...

2 years ago

1 answers
30 views
0
When I clicked on Android on Item, the position was clearly marked as 0, but I sent the value to another class in the shared preferences mode, so when I read the value, it appears as -1.

@Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { Cursor cursor = (Cursor) parent.getItemAtPosition(position); int myId = position; final int item_...

2 years ago

1 answers
47 views
0
How do I auto-align the source code in Eclipse?

For example, public static void main(String[] args){System.out.println(aaa);}If you have a code like this public static void main(String[] args){ System.out.println(aaa);}Isn't there a function to mak...

2 years ago

1 answers
111 views
0
Please recommend a good library for Java graph algorithms.

Is there anyone in the Java library who has used the graph algorithm? I found JGraph and wrote it. There are a lot of other things on Google. So I'm asking if there's a good library that you can use a...

2 years ago

3 answers
22 views
0

1 answers
107 views
0
What is the difference between Set and List?

What is the difference between Set and List in Java?

2 years ago

1 answers
33 views
0
I wonder what happens to the next code execution.

package jpastart.reserve.application;import java.util.Optional;import javax.persistence.EntityManager;import jpastart.jpa.EMF;import jpastart.reserve.model.User;public class UserService { public UserS...

2 years ago

1 answers
100 views
0
How to classify android packages

What criteria do you break down when you classify classes into normal packages on Android?Until now,activity.By screen.oooActivityfragment.by screen.oooFragmemntview.oooViewutil.oooUtiladapter.oooAdap...

2 years ago

1 answers
145 views
0
StringTokenizer and Scanner and String.Split

scanner of Java class to learn the difference between the three, and stringtokenizer split wondered. I know, separate Then why bother to work only in the strings only with split stringtokenizer scanne...


1 answers
73 views
0
NullPointerException when accessing view from onCreate()

This is one of the typical questions that is frequently asked in hashcodeYou have created a new activity using the wizard according to the tutorial. NullPointerException occurred when a method call wa...

« - 112 - »

© 2024 OneMinuteCode. All rights reserved.