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
89 views
0
Reasons for overriding hashcode methods

Why do you override hashcode methods in Java?

2 years ago

1 answers
108 views
0
What is the default for Boolean in Java?

What is the default for Boolean in Java?

2 years ago

1 answers
139 views
0
Is there a method to help with the essence conversion in Java?

I want to make a game that helps me understand the essence, but I need to convert it to compare the answers to the questions. I can implement it myself, but if there is a method supported by Java, it ...


1 answers
73 views
0
How do you output sound in Java?

I want to make a sound on my program, what can I do?

2 years ago

1 answers
44 views
0
How to get only file names without extensions for files in Java

Is there a way to get the file name without an extension?fileNameWithExt = test.xml;fileNameWithOutExt = test;Like this.

2 years ago

1 answers
103 views
0
What is Reflection in Java?

I saw the Reflection technique while I was googling, but I don't understand it well with my head. Can you show me a simple example that will help me understand the concept of reflection?

2 years ago

1 answers
61 views
0
What does the ^ operator do in Java?

What is the work of a operator in Java?For example, if you do an operation such as inta=5^n;Operator does When n is 5, the value is 0When n is 4, the value is 1When n is 3, the value is 3I don't think...


1 answers
154 views
0
How do I cast an object as int in Java?

I want to cast an object as int. How do I do it

2 years ago

1 answers
65 views
0
Is there any way to call the getClass() method in the static method?

I made a lot of static methods. Inside the static method, you need to call the getClass() method as shown below public static void startMusic() { URL songPath = getClass().getClassLoader().getResource...

2 years ago

1 answers
81 views
0
Simple way to read json from a URL in Java

It might be a stupid question, but what's the simplest way to parse and read JSON from a URL in Java? Groovy only needs a few lines of code, but all the Java examples I found are ridiculously long cod...

2 years ago
« - 72 - »

© 2024 OneMinuteCode. All rights reserved.