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
23 views
0
Escape method call error and for statement from main

public class Testtest{ public int countCaps(String einString){ String[] array_word; array_word = einString.split(); // for(int i=0; i<array_word.length;i++){ array_word[i]; // Error!! } } public st...

2 years ago

2 answers
27 views
0
Othello board's difficulty during production

I'm NU'EST and I started producing Othello programs yesterday.It's nothing elsef = EMPRY;Although all arrays were initialized to with the code, the output results showed that all arrays It is nullif...

2 years ago

1 answers
106 views
0
Overlay For Door Escape Problem

for (Type type : types) { for (Type t : types2) { if (some condition) { // // Do something and break... break; // Breaks out of the inner loop } } }What do I do if I want to completely bre...

2 years ago

1 answers
130 views
0
System.out.println I have a question.

Opening System.out.println().I understand that you can access the object out declared as PrintStream in the object called System and access println, which is the method of PrintStream. However, when S...

2 years ago

1 answers
84 views
0
How do I erase repeating elements from the ArrayList?

There is a string ArrayList, but I want to erase the repeated string from this list. What should I do?


1 answers
30 views
0
I would like to ask you how to implement SIP.

They told me to look for SIP for video communication.Once you look at the server level, there is also a SIP servlet in the Java basic API. I wonder what other ways there are.How to implement with a C+...

2 years ago

1 answers
22 views
0
During Android development, I want to use onCreateView() in onActivityResult, but an error appears

public class FragmentE extends Fragment implements View.OnClickListener{private static final int EDIT_DATA_REQUEST_CODE = 1;Button editMyInfo;ToggleButton quick_view_switch;private ListView listView;p...

2 years ago

1 answers
24 views
0
Change item when clicking Recycler View Head

I'd like to implement it as shown in the picture with Recycler View If you press the head button, the existing item will go away and the new item will be visibleThe name of the head changesYou want to...

2 years ago

1 answers
42 views
0
How do you put two lists together in Java?

Is there a way to combine the two lists as short as possible with JDK without touching the existing list and without using other libraries?List<String> newList = new ArrayList<String>();ne...

2 years ago

1 answers
96 views
0
Is there a way to specify a storage path to use logback?

I use logback or log pojay. I want to specify a separate path to save the log txt file. Is there a way to specify a storage path?

2 years ago
« - 116 - »

© 2024 OneMinuteCode. All rights reserved.