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
147 views
0
How to change Long to Integer

How can I change Long to Integer?

2 years ago

1 answers
112 views
0
I'm creating a class with Java that has a function similar to Python's Range, but I keep getting Cannot find symbol errors.

this.Error:cannot find symbol occurs on the line with the variable name. It's my first time using Java, so I don't understand it well, but isn't this able to access variables in objects like Python's ...


1 answers
83 views
0
From Java Library jsoup

When you parse using jsoup, as shown in the picture below Do you know how to parse the data-asset-id content above when there is an HTml code part?

2 years ago

1 answers
148 views
0
How do you generate integer type random numbers in a specific range?

You want to use Java to generate a random number of a specific range of int types.For example:You want to generate random numbers ranging from 5 to 10 with a minimum value of 5 and a maximum value of ...


1 answers
31 views
0
java class creation and instrument variable initialization and constructor complex questions

class Base { int data = 5; Base() { System.out.println(Called Base()~); }}class Derived extends Base { int value = 4; Derived(){ System.out.println(Called Derived()~); }}public class HelloJV { publi...

2 years ago

1 answers
22 views
0
If you set the time by setting the Android timepicker as a dialog, I would like to get the set time in int format.

If you set the time by setting the Android timepicker as a dialog, I would like to get the set time in int format.Please give me some advice on how to get it!

2 years ago

1 answers
79 views
0
Can I make a JAVA GUI listener without AWT?

I am an introductory Java developer who is studying with an Internet tutorial, and I learned how to create a full-screen GUI application. By the way, my program says that the previous version of AWT i...

2 years ago

1 answers
46 views
0
How do you compare your own elements with each other in a Java array?

int arr[] = new int[6];for (int k = 0; k < 5; k++) { arr[k] = (int)(Math.random()*100); }for(int s = 0;s<5;s++) { while(arr[s] == 0) { arr[s] = (int)(Math.random()*100); } wh...

2 years ago

1 answers
53 views
0
How to solve the Android Studio Activity global variable Unfortunatelly error?

Hello, I am currently making a web page viewer using Android Studio.Depending on the value of the action mode int global variable in WebActivityI want to display a web page, but I keep getting errors ...


1 answers
152 views
0
What's better about synchronized methods than synchronized blocks when synchronized on threads?

Please show me an example of how the Synchronized method is better than Synchronized Block in the thread.

« - 104 - »

© 2024 OneMinuteCode. All rights reserved.