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
128 views
0
How do I change String to Int?

I use Java. How do you change String to int type in Java?The string has numbers like 1234 and I want to change it to 1234


1 answers
137 views
0
Can I convert strings to numbers in Java?

How do I convert the int value into a String type string in Java?The string that I made is made up of only numbers. I want to convert that string into a number.For example, you want to get the number ...


2 answers
36 views
0
I put Char [] in the list in Java, but I want to save it in Char [] when I take it out again, what should I do?

temp =new char[10]; List Temp=new ArrayList(); Temp.add(temp); //Another object (Listemp)char[ ] Temp;Temp =(char[ ]) temp.get(0);Error Occurred java.lang.IndexOutOfBoundsExceptionSo we're going t...

2 years ago

1 answers
57 views
0
About Java object generation (?)

When you create an object in Java, There are times when you use Box-Box, such as Box<String> box = new Box<>();There are times when I use Set-HashSet, such as Set<String>set1 = new H...

2 years ago

1 answers
53 views
0
Why is inti = 1024 * 1024 * 1024; compiled without errors?

The expression range of int is from -2147483648 to 2147483647.So inti = 2147483648; and then in Eclipse, you get a red underline for 2147483648.inti = 1024 * 1024 * 1024 * 1024; this compiles well.pub...

2 years ago

1 answers
111 views
0
How do I copy an ArrayList?

How do I copy ArrayList in Java 1.5?ArrayList<Dog> dogs = getDogs();ArrayList<Dog> clonedList = ...Copy each item of dogs...For example, if I want to copy dogs to the clonedList like this,...


2 answers
47 views
0
Questions about Java resize upload

I'd like to ask you a question.Existing code byte[] photo; if(upload.isEmpty() == false){ logger.info(-------------Upload file start -------------); logger.info(name : +upload.getName()); logge...

2 years ago

1 answers
38 views
0
Syntax error to make 2D array.

int[][] multD = new int[5][];multD[0] = new int[10];인터넷에서 5x10배열 만드는 소스라고 이런 소스를 봤는데 문법에러가 납니다.Why is that?


2 answers
29 views
0
This is a beginner's question in JavaScript.crying

I'm sorry for the basic questionThere are several tags with two trs in the tbody.If you press a of the first tr in the tbody here, the second tr appears.The tr of other tbody keeps coming out too...I ...

2 years ago

1 answers
18 views
0
class anonymous class derived from onclicklistener must either be declared ?

Hello, I'm the developer of Android.class anonymous class derived from clicklistener must other be defined or implemented abstract method 'OnClick(View)' int 'OnClickListener' is struggling.Code is pu...

2 years ago
« - 134 - »

© 2024 OneMinuteCode. All rights reserved.