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
115 views
0
I want to put a marker on the NAVER API map with latitude hardness parsed by Json. (STRING TO DOBLE)

I'm trying to take a marker using Naver API map, but the value of the marker is double type, so it can'tdouble LNG = Double.parseDouble(longitude.toString()); I tried to change it to Double and put it...

2 years ago

1 answers
140 views
0
Implementing tab button with ViewPager.

I implemented it in this way in the viewPager adapter @Override public Fragment getItem(int position) { Log.d(test,=====position==== + position); switch (position){ case 0: fragement a = new a();...


1 answers
85 views
0
How do I create a list in Java?

Set is Set myset = new HashSet()You make it like this, right? How do I make a list?

2 years ago

1 answers
81 views
0
How do I check if the current thread is the main thread?

I need a code to check whether the current thread is the main thread or not, how can I do it


1 answers
22 views
0
Java Main Class

If you create one main class for the entire program and select the menu from the main, you want to create a program that has three different functions (make several classes separately for each functio...

2 years ago

1 answers
78 views
0
Is there a performance difference when asking for conditions with boolean type variable or int type variable in java if statement?

Is there a difference between asking 1byte boolean variable and 4byte int type variable when asking if??To write it down briefly, it is as followsboolean infiniteMode;int gameScore;[1]if(infiniteMode)...

2 years ago

1 answers
81 views
0
Is there a method to combine paths?

Is there a method like System.IO.Path.Combine() in Java if you look at C# or dot net? Or is it possible with the code?

2 years ago

1 answers
19 views
0
Java call by value?

As far as I know, when passing objects in Java,This is a call-by-reference.When passing a general variable (int, etc.), I know it's Call by Value, is that right?Is there a way to turn the general vari...

2 years ago

2 answers
26 views
0
It's a question for the moon

int total=0; for(int i=1; i<100; i++){ total=total+i; System.out.println(total); } }It's this chord. From what I've tried,13610152128364555It stretches out like thisIt comes out up to 4950 But...

2 years ago

1 answers
21 views
0
Can Java also see sources defined as .h in C?

I'm using Eclipse. In C, if you open the header file, you can see how the code is organized, but can you see it in Java?

2 years ago
« - 111 - »

© 2024 OneMinuteCode. All rights reserved.