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
22 views
0
The JSP tag will run repeatedly.

<%@ page contentType=text/html;charset=UTF-8 language=java %><html><head> <title>JSP & Servlet Practice</title></head><body><%! int num = 1; String str...

2 years ago

3 answers
126 views
0
I'd like to bring data to the list I brought to the for Each door using both input type check box and radio button

I'm a beginner, so I can't explain in detail I'm sorryThere is a member information and study table, but I want to bring a member information list, select a member as a check box, select the leader of...

2 years ago

1 answers
21 views
0
Questions about java access controller

I want to use the account class in the AccountTest.java fileHow do I fix it?Please tell me how to change classAccount {} to public classAccount {}.Thank you.

2 years ago

1 answers
42 views
0
Please ask me some questions when I call the API on Spring.

There are server A and server B, and the network is different from each other, and the DB link cannot be connected due to security issues.So I have to get the data from server A through APISince serve...

2 years ago

1 answers
66 views
0
Processing questionPlease

void setup() { size(400, 400); background(190, 255, 255); strokeWeight(30); stroke(0, 0, 0, 50); int a = 0; int b = 10; int c = 7; int d = random(8, 16, 20); point(a, b);}for (i = a; i <= width; i ...

2 years ago

1 answers
38 views
0
Find out if jQuery checks input-radio

<html><head> <script src=https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js></script></head><body> <input type=radio name=radio12 id=radio1> <...

2 years ago

1 answers
23 views
0
It is difficult to implement p1.hapPoly(p2) in JAVA polynomial addition calculation

ArrayList Class (Correction>> ArrList) import java.util.NoSuchElementException;ArrList, not public class ArrayList<E> { //ArrayList. private E a[]; private int size; public ArrayList() { ...

2 years ago

1 answers
74 views
0
Please tell me how to use Geocoding API

I'm going to get the road name address and save it as latitude and longitude.In order to do this, I have to use geocoding, but the usage method changed last year, so I'm leaving a question here becaus...


1 answers
104 views
0
Ask a Java repeat question.

import java.util.Scanner; // Invoke an external class to insert a scannerpublic class money { public static void main(String[] args) { // // TODO Auto-generated method stub String input; Scanner sc...

2 years ago

« - 139 - »

© 2024 OneMinuteCode. All rights reserved.