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
91 views
0
I'm asking you a question about the sum using Java csv

I have to write a program that calculates the total by reading the csv file below using scanner. public class ScannerTest3 { public static void main(String[] args) throws Exception{ Scanner sc1 = ne...

2 years ago

1 answers
22 views
0
When one gamer is eliminated from the word chain game, it is implemented to remove the number of people, but it is not implemented with one gamer missing.

import java.util.Scanner;class Player{ String name; String answer; static String word = Father; static int lastIndex = word.length()-1;void showPlayerName() { System.out.println(name);}void showPlayer...

2 years ago

1 answers
22 views
0
I don't understand why the static method can't receive a non-static member, but it's an example.

class Number {int n;public Number(int n) { this.n = n; }}public class Example {static void plusTen(Number x) { x.n += 10; }public static void main(String args[]) { Number ob = new Number(5); plusTen(o...

2 years ago

1 answers
22 views
0
I just started Java. Help me"T"

You should write a program that outputs wrong input if~else if~else if~else if~else if~else if~else if you enter a number and 3~5 is spring, 6~8 is summer, 9~11 is autumn, 12, 1 and 2 are entered. For...

2 years ago

1 answers
79 views
0
Java Recursive Call (Novice)

public void preorder(int index) { // Create Content if(aTree[index] != null) { System.out.print(aTree[index]); preorder(2 * index); preorder(2 * index + 1); } }Simple tree potential traversal fu...

2 years ago

1 answers
75 views
0
JAVA Syntax Meaning Inquiry

public class BubbleSort{public static void bubbleSort(int[] arr) { for(int i = 0; i < arr.length; i++) { for(int j = 0; j < arr.length - i -1 ; j++) { if(arr[j] > arr[j+1]) { int temp = a...

2 years ago

1 answers
95 views
0
Java programming constructor overloading

Book(){}Book(String title, String author) { this.title = title; this.author = author;}Is it overloaded if I do this?


1 answers
79 views
0
Differences when assigned as clear and new in Java arrayList

Hello, I used clear while working, but my friend who didn't have the price reallocated it to new, so it came out properly I was going to find out the difference, but I have no idea, so I'm asking you ...

2 years ago

1 answers
51 views
0
Java Collection Framework LinkedList question.

The LinkedList feature states that when you remove an object from a particular index, only the link is parallelized and the rest of the link is not changedWhen I tried it myself, it moved up the same ...

2 years ago

1 answers
32 views
0
There was a problem comparing the value received through request.getParameter with the normal string...

String stx = req.getParameter(stx); System.out.println(stx: +stx); if(stx == rcontload) { service.contentload(reportno); };When I received the value from the previous page, System.out.println (...

2 years ago
« - 146 - »

© 2024 OneMinuteCode. All rights reserved.