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
24 views
0
Read Java decimal places in Korean

The content of the text file contains decimal places.Is there a way to convert this into Korean?0.015 is 0 0 0 1 5 like this

2 years ago

2 answers
20 views
0
To take a single real number and print it out by part

Solving algorithm basic problems in Java language Problem: When a single real number is entered, the integer part in the first line, Outputs the real number of digits in the second line as it is Examp...

2 years ago

1 answers
127 views
0
Questions about the android image folder!

Hello, I'm just asking you this question because it hasn't been a few days since I was implementing the image folder.You have successfully imported the image through Media.store. So I even took a fold...

2 years ago

1 answers
42 views
0
How do I remove the file extension from Java?

What is the best way to remove the file extension in Java, as shown below?title part1.txttitle part2.html=>title part1title part2

2 years ago

1 answers
95 views
0
C Pointer vs Java Reference Variables vs Other Languages Comparison

Hi, how are you?I am a student who forgot all the C and C++ I learned at school in the military and is currently studying Java and C# as an intern part-time job and hobby.Currently, I am taking an int...


1 answers
21 views
0
Can I ask you a question about Java programming?

I re-coded it after looking at another exampleIf you look at the picture, I printed out the product instance p with println, and the toString was executed in the product classI'm asking you this quest...

2 years ago

1 answers
92 views
0
(java) Questions about API and JSON parsing.

{ success: true, message: null, code: null, elapsed: 0.1291, data: { CSPA:BTC: { cspa: 8012.00601685, cspa_change_24h: -467.52638691, cspa_change_24h_pct: -5.51, volume_btc_24h: 634847.37, volum...

2 years ago

1 answers
119 views
0
Please tell me how to attach an external URL link to JavaDoc.

/** * * See {@linktourl http://google.com} */Like this.

2 years ago

1 answers
18 views
0
What is the difference between the equivalent comparison operator (==) and equals() methods in Java?

I'd like to get confirmation that I understand the following exactly.Is that what I understand?

2 years ago

1 answers
114 views
0
How do I decode URLs in Java?

in Javahttps%3A%2F%2Fmywebsite%2Fdocs%2Fenglish%2Fsite%2Fmybook.do%3Frequest_typeThese chordshttps://mywebsite/docs/english/site/mybook.do&request_typeI'd like to change it like this.class StringU...

2 years ago
« - 123 - »

© 2024 OneMinuteCode. All rights reserved.