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
129 views
0
I'm using web hosting and I have a question.

I am using the server because I applied for web hosting instead of server hosting at Cafe 24.While studying TCP/IP, I was making 1:1 chat as a practiceNot long ago, I created and ran a TCP server on m...

2 years ago

1 answers
21 views
0
This is a question when playing Android streaming videos!

Hello, everyone I'm posting a question after a long time. When I try to watch a video when I'm accessing lte or 3g, there's a part that says yes/no in the dialog because it's 3g/4g, but how do I imple...

2 years ago

1 answers
44 views
0
How can I capitalize every first letter of a string in Java?

Is there a method in Java that capitalizes every first letter of a string? jon skeet -> Jon SkeetMiles o'Brien -> Miles O'Brien (exclude the title and keep the original capital letter)old mcdona...

2 years ago

1 answers
87 views
0
Methods such as Sprintf in Java

Printf has been added since Java 1.5. But I don't know how to print it out as a string instead of a file like sprintf does in c Please tell me how to do it.

2 years ago

1 answers
58 views
0
I want to end the activity when I double click the back button, what should I do?

If you look at the games or applications on the Google Play Store, they don't end right away when you press Back, they float toastYou end the activity only when you press the dialog twice in a row. I ...

2 years ago

1 answers
19 views
0
(i<=j && j<=i && i!=j) Why is true a return when calculated?

public class TestProgram { public static void main(String[] args){ Integer i = new Integer(0); Integer j = new Integer(0); while(i<=j && j<=i && i!=j){ System.out.println(i);...

2 years ago

2 answers
58 views
0
To interrupt Java threads

Hi, everyone.I'm doing Android programming.I'm processing the long-lasting tasks separately through the threadIs there a way to stop a working thread?Maybe it's because the thread you point to is diff...

2 years ago

1 answers
43 views
0
It's a Java array code, but there's a part I don't understand.

class ForExample5 {public static void main(String args[]) { int arr[] = { 10, 20, 30, 40, 50 }; for (int cnt = 0; cnt < arr.length; cnt++) { System.out.println(arr[cnt]); } for (int num : arr) {...

2 years ago

1 answers
102 views
0
What is an easy way to create an exception handling class in Java?

You are about to create an exception handling class. public class MyException extends Exception {}public class Foo { public bar() throws MyException { throw new MyException(try again please); }}I trie...

2 years ago

1 answers
21 views
0
Is null also an object?

Does Java also treat null as an object?

2 years ago
« - 127 - »

© 2024 OneMinuteCode. All rights reserved.