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
40 views
0
Is there a way to count how many specific characters are in a string?

If you have the string a.b.c.d. in this string.I'd like to count how many there are. I'd like to know if I can find out without a repeat statement.

2 years ago

1 answers
62 views
0
What do you mean by using a static factory method instead of a constructor?

I was working on the Java program, and my friend told me to use the static factory method instead of the creator.I didn't tell you why, but I don't know what this means.


1 answers
42 views
0
Java Multiple Array Copy Question!

While solving the problem yesterday, I wanted to copy the two-dimensional array A to the two-dimensional array B to System.arraycopy and change the content value of B only.But changing the value of ar...

2 years ago

1 answers
24 views
0
I'm writing a simple dictionary program in Java, and I have a problem, so I'm asking you a question.

public class Main Window { public static void main(String[] args) { int selectMenu = 0; String inputWord = null; String[] wordArray = new String[20]; WordPlusMinus wordPlusMinus = new WordPlusMinu...

2 years ago

2 answers
47 views
0
This is a problem with the java algorithm.

https://www.hackerrank.com/challenges/30-linked-list/problemThis is the question above.First, you get the number of nodes, then you get the data value inside the nodeI think it's a matter of final out...

2 years ago

1 answers
36 views
0
What is the volatile keyword in Java?

I was looking at the Java document and saw the keyword volatile, what is this and what is it used for?

2 years ago

1 answers
24 views
0
I have a question for copying the Java array.

While solving the problem yesterday, I wanted to copy array A to array B to system.arraycopy and change only the content value of B. But changing the value of array B also changed the value of array A...

2 years ago

1 answers
115 views
0
This is a question for the Java Scanner!

When I declare a field and declare a method after creating one class, if I need a scanner in several methods, should I declare and close the scanner for each method??And I created several classes, and...


1 answers
24 views
0
Java Source Code Error

import java.util.Scanner;public class RandomNumber { public static long money = 1000000; // set as the default amount of 10 million won static int num1; //number 1 static int num2; //number 2 static i...

2 years ago

1 answers
122 views
0
Overriding rules for equal's method in Java

I'm studying Java with googling, and I saw a post saying that it's better to use the same as you inherited instead of overriding the equals. But if you want to override the equals, I told you to only ...

2 years ago
« - 108 - »

© 2024 OneMinuteCode. All rights reserved.