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
21 views
0
I can't find what's wrong with Java. Help me.

public class Duplicate{ public static void main(String[] args){ double dishes = 0.0; int studentdiscount = 50; int workerdiscount = 25; int guestdiscount = 0; int discountreal = 0; double discountpric...

2 years ago

1 answers
23 views
0
Read data from Java ByteBuffer

Scanner sc = new Scanner(System.in);System.out.print(Source File: );Path src = Paths.get(sc.nextLine());System.out.print(Copy Name: );Path dst = Paths.get(sc.nextLine());ByteBuffer buff = ByteBuffer.a...

2 years ago

1 answers
128 views
0
Can't I change Set to List without creating List?

Map<String, List> mainMap = new HashMap<String, List>();for(int i=0; i<something.size(); i++){ Set set = getSet(...); //return different result each time List listOfNames = new ArrayLis...

2 years ago

1 answers
116 views
0
I want to print out only the information I want from Java open api parsing, what should I do?

import java.io.BufferedReader;import java.io.InputStreamReader;import java.net.HttpURLConnection;import java.net.URL;@SuppressWarnings(unused)public class Web_Parser_Default {private static final Stri...

2 years ago

1 answers
20 views
0
Do I have to check the null when I write the instance of?

If I do a null instance of Some Class, will it be a return false or a null Pointer Exception?

2 years ago

1 answers
148 views
0
What is the parameter "String args[]" in the main function in Java?

When defining the main functionpublic void main(String[] args)You do it like this. HereWhat is String [args] and what is this for?


2 answers
107 views
0
How do I use the Android sqlite select statement to call up to the last column?

I'm now using this sql statement to show the data in a list form, but how do I fix this sql statement to show the rest of the data except for the last one in the list?SELECT * FROM + TABLE_NAME+ ORDE...

2 years ago

1 answers
59 views
0
Why is it getting an error in Java?

I'm making a Tetris game. If you execute the code below, the message Shape is not an enclosing class appears. public class Test { public static void main(String[] args) { Shape s = new Shape.ZShape()...

2 years ago

1 answers
76 views
0
I have a question about JAVA compilation.

I have a question during Java coding.While a method written with JAVA is running I would like to ask if there is any way to compile a specific java file.In Eclipse, etc., it is not a compile commandI ...

2 years ago

2 answers
20 views
0
Is this JSON?

[[a,b,c,0,0,3,1,1,1,1,1,1],[a,b,c,1,5,5,1,1,1,1,1,1]]Is the data in JSON format right?It's not about height or priceI'm going to parse on Androidtype org.json.JSONArray cannot be converted to JSONObje...

2 years ago
« - 125 - »

© 2024 OneMinuteCode. All rights reserved.