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
107 views
0
When comparing enum members, == and equals()

public useEnums(SomeEnum a) { if(a.equals(SomeEnum.SOME_ENUM_VALUE)) { ... } ... }When I tried to compare the two members of enum in Java like above, I wrote .equals()Looking at it public useEnum...

2 years ago

1 answers
112 views
0
To select multiple columns in the JTable

The first row is non-correctable text, and the second row has a JTable with a check box representing the boolean value. What I want is to check all the checked boxes among the selected check boxes whe...


1 answers
123 views
0
To check null in a repeat statement

Is there a good way to check if the list is null when going around for loop in Java?if (someList != null) { for (Object object : someList) { // // do whatever }}//I if (someList == null) { return; //...

2 years ago

1 answers
85 views
0
Visualize Java Source Code with JavaScript

I'm creating a visualization web of Java source code in my school project.The source code tries to scan and visualize the code assuming there are no errors.We are now implementing a code to tokenize t...


1 answers
22 views
0
[Android] I'd like to ask you how to use a click event for a view in a custom navigation view.

<RelativeLayout android:layout_width=match_parent android:layout_height=wrap_content > <ImageView android:id=@+id/drawer_login_img android:layout_width=70dp android:layout_height=70dp and...

2 years ago

1 answers
93 views
0
Are there any other opening letters other than \n? Or is there another way to open it?

\nIs there any other text that goes to the next line? I can't.


1 answers
44 views
0
I want to reverse the order of the int-type array, how can I do that?

To reverse the order of int-type arrays in the method for(int i = 0; i < validData.length; i++){ int temp = validData[i]; validData[i] = validData[validData.length - i - 1]; validData[validData.len...

2 years ago

1 answers
95 views
0
What is the best way to filter a Java collection?

I want to filter java.util.Collection when implementing.

2 years ago

1 answers
17 views
0
I wonder how to put a space between the output values in the Java coding output!

We're coding the problem of finding prime factorization!import java.util.Scanner;public class Main {static Scanner sc = new Scanner(System.in);public static void main(String[] args) { int testcase = s...

2 years ago

1 answers
122 views
0
How to copy objects from Java

DummyBean dum = new DummyBean();dum.setDummy(foo);System.out.println(dum.getDummy()); // prints 'foo'DummyBean dumtwo = dum;System.out.println(dumtwo.getDummy()); // prints 'foo'dum.setDummy(bar);Syst...

2 years ago
« - 128 - »

© 2024 OneMinuteCode. All rights reserved.