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
96 views
0
When I receive the contents of the txt file from intellij, all the Korean letters are broken.

First, I searched for various ways and file encoding is all set to UTF-8. And Intellij is an Ultimate edition. Since Hangul is not recognized, Hangul is not applied to regular expressions at all. Plea...

2 years ago

1 answers
113 views
0
I would like to parse JSON using Gson.

I want to parse JSON data expressed as a string. I'm using Google Gson.JSON data:jsonLine = { data: { translations: [ { translatedText: Hello world } ] }};Class you want to implement:public class Json...

2 years ago

1 answers
131 views
0
How do I compare Integer classes in Java?

For example,Integer a = 4;if (a < 5)I know that this is a comparative operation by learning auto boxing. The Integer and int types are comparatively well calculated,The problem is when calculating ...

2 years ago

1 answers
30 views
0
Can anyone tell me this Java problem solving code? "T"

https://kin-phinf.pstatic.net/20190924_223/1569290239499gRTda_JPEG/1569290238746.jpeg?type=w480https://kin-phinf.pstatic.net/20190924_123/1569290254342DLafV_JPEG/1569290253721.jpeg?type=w480Could you ...

2 years ago

2 answers
22 views
0
Question about Java constructor.

Hello!The code below is the code that outputs a valid date or not via isValid() if the constructor does not initialize to a date that meets the conditions. For example, if you created an instance as o...

2 years ago

1 answers
77 views
0
(java)Inheritance and constructor call problems

// Parent Classclass Person { private String name; private int age; public Person(String name, int age) { this.name = name; this.age = age; } public void setName(String name) { this.name = name; } p...


1 answers
18 views
0
This is a beginner's coding question.

package ex03;public class Student extends Person {public int number;public Student(String name, int age, int number) { this.number=number;}public static void main(String[] args) { Student stu1 = new S...

2 years ago

2 answers
25 views
0
Why can't int have a null value, but Integer has a null value?

I have a question while studying the wrapper class.

2 years ago

1 answers
33 views
0
When would you like to initialize a variable in a class, with the constructor or just declare it?

We are developing C# and Java recently. I have a question. What is the best way to initialize a variable?public class Dice{ private int topFace = 1; private Random myRand = new Random(); public void R...

2 years ago

1 answers
23 views
0
Question about BufferedWriter output.

Enter 103 100 and If you print out System.out.println, you get 15When output to BufferedWriter, strange characters are output.What's the reason?Thank you! package math;import java.io.BufferedReader;im...

2 years ago
« - 137 - »

© 2024 OneMinuteCode. All rights reserved.