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
100 views
0
How do I check if my Android phone is horizontal or vertical?

How do I check if my Android phone is horizontal or vertical?

2 years ago

1 answers
126 views
0
Meaning of task.get

try { task.get(1000, TimeUnit.MILLISECONDS); } } catch (ExecutionException e) { e.printStackTrace(); } } catch (InterruptedException e) { e.printStackTrace(); } } catch (TimeoutException e) { e.pr...


1 answers
131 views
0
What is the "continue" keyword and what role does it play in Java?

I saw the keyword continue for the first time, and what it is, what it is, what it does, and when I should do, and when I should use itI'm curious.

2 years ago

1 answers
23 views
0
I'm going to make an Android karaoke app.

I'm planning to create a karaoke application that will run on my Android phone, but I don't know how to implement the ability to run music and record at the same time.cryingIs there a way to record th...

2 years ago

1 answers
156 views
0
How do I count the number of rows in Hibernate?

For example, if you have a tablet book, how do you count the total number of books in Hibernate?

2 years ago

1 answers
17 views
0
How to specify a specific word and open it to the next line

If you specify a specific word for the source I'm going to read the sentence after that wordWhat should I do?For example, I want to go home. If there's a sentence that says, Do you want to go home?If ...

2 years ago

1 answers
125 views
0
Is there a way to call a method with a certain amount of delay?

I'd like to call the method with a certain delay In Objective C,[self performSelector:@selector(DoSomething) withObject:nil afterDelay:5];You do it like this. What do I do on Android? public void DoSo...

2 years ago

1 answers
106 views
0
How to empty or remove the contents of StringBuilder

I'm using StringBuilder in the repeat. And I'd like to repeat all the x's and empty the contents and write a new String Builder. On dotnet, StringBuilder.ClearJava supports delete but it seems too com...

2 years ago

1 answers
66 views
0
To change the enum value to int

public enum TAX { NOTAX(0),SALESTAX(10),IMPORTEDTAX(5); private int value; private TAX(int value){ this.value = value; }}TAX var = TAX.NOTAX;public int getTaxValue(){ // What am I supposed to do here...

2 years ago

1 answers
49 views
0
In Java, I remember that there was no dbms connection on another PC. What's the problem?

I remember that the connection of 127.0.0.1 to the db from java was successful.By the way, I remember that when I connected to the IP address from the database of another computer connected to the net...

« - 131 - »

© 2024 OneMinuteCode. All rights reserved.