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


2 answers
49 views
0
I'm studying Java. How do I store integers as arrays?

You want to take an integer and sort it in ascending or descending order.If I get 152496,This integer is in array A[]A[0]=1A[1]=5A[2]=2A[3]=4A[4]=9A[5]=6Is there a way to save it like this?Or is there...

2 years ago

1 answers
127 views
0
Can I change InputStream to Byte array?

Can I change InputStream to Byte array?

2 years ago

1 answers
43 views
0
What is the easiest way to repeat a string in Java?

I'm looking for a method or operator that allows me to repeat the string n times. I know how to spin a loopI want to use a simpler and more direct method than turning an unnecessary loop.String str = ...

2 years ago

2 answers
19 views
0
dllhost when running image

Whenever I run an image in Windows Viewer, I check the process, and dllhost.exe is running, but dllhost does not appear when I run it with this Paint. Is there any way to prevent dllhost from appearin...

2 years ago

2 answers
68 views
0
How do I know how many times I repeat a for-each door in Java?

for(String s : stringArray) { doSomethingWith(s);}How do I know how many times I repeat this if I have this for-each syntax?for(inti=0;i<boundary;i++) The value of i is the number of iterations In ...

2 years ago

1 answers
80 views
0
Can I put data in ArrayList in the java array?

First of all, assuming that it's a structure, it' name, its age, The name of the structure is st. ArrayList [] list= new ArrayList[5];st s = new st(); s.Name (name);s.Age (11);list[0] = new ArrayList(...

2 years ago

1 answers
40 views
0
How do I get my Java-coded environment to Linux in Windows Eclipse

Hello, I'm Jeon Won-pyo.The gist of the question is... How can I take the environment I was coding in Windows Eclipse to Linux (Ubuntu)? This is.Data locally from my laptop (Windows 7, Eclipse) via th...

2 years ago

1 answers
53 views
0
What is the difference between File.separator and File.pathSeparator?

File class has two strings, separator and path-separator. What's the difference between the two?

2 years ago

1 answers
19 views
0
[Super beginner] Here's the n-win code for 2.

import java.util.*;public class exam6_3_1 {public static void main(String[] args) { // // TODO Auto-generated method stub System.out.print (Enter a : ); Scanner sc = new Scanner(System.in); int a = sc...

2 years ago

1 answers
65 views
0
When do you use StringBuilder?

I don't know the difference between String and String Builder. Please explain the difference between the two.

2 years ago
« - 133 - »

© 2024 OneMinuteCode. All rights reserved.