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
98 views
0
How to recursively clear directories in Java

Is there a way to recursively erase the entire directory in Java? Usually, it's possible to erase empty directories. But if there's a file in the directory that you erase, it gets a little hard. How d...


2 answers
23 views
0
I wonder how to retrieve the Java instance name.

public class Car { public int gas; // fields accessible to anyone}public class Suv extends Car{ //The child class can use the gas field of the parent class.}public class Truck extends Car{//The child ...

2 years ago

1 answers
132 views
0
How can I get resource content from static context?

I'd like to read the string in xml. I need a lot from the widget, so can I call getResource and get it without an activity object?


1 answers
83 views
0
Polymorphism and Overriding and Overloading

When someone asked me what polymorphism is...Can overloading or overriding be the answer to that?I think polymorphism needs to be added more than that. The one defined without the implementation of th...

2 years ago

1 answers
71 views
0
When do you use the static method?

I have a question. When do you use the static method? I made the getters and setters methods. I want to make these methods callable only when an object is created. But do I have to use a static method...

2 years ago

1 answers
82 views
0
When should I normally use the interface?

I understand the difference between an interface and an abstract class, but when should I use the interface correctly?

2 years ago

1 answers
95 views
0
[Java Basics] Question about using the final constant in the switch case statement.

I know that if-else statements are more efficient, but it is a homework that needs to be solved with a switch case.//final int myS = 'A' works, but it is entered by the scanner method and the case exp...

2 years ago

1 answers
145 views
0
How to change char to String

I want to change the char data type to String. How do I do it


1 answers
55 views
0
Boolean second question, Java

public class TapeDeckTestDrive {public static void main(String[] args) { TapeDeck t = new TapeDeck(); t.canRecord =true; if (t.canRecord == true) { t.recordTape(); }}}class TapeDeck{boolean canRecord...

2 years ago

1 answers
43 views
0
Can we declare an array in one line?

String[] strs = {blah, hey, yo};m(strs);The above code delivers the String list to the m()method, but I don't want to declare an array of strings, so can I make this code one line?

2 years ago
« - 121 - »

© 2024 OneMinuteCode. All rights reserved.