Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

Java Getting Started tutorial


May 10, 2021 Java


Table of contents


Java Getting Started tutorial

Java Getting Started tutorial

Java is an advanced programming language launched by Sun Microsystems in May 1995.

Java can run on multiple platforms such as Windows, Mac OS, and many other UNIX versions of the system.

This tutorial will give you a better understanding of the JAVA programming language with simple examples.

Java online tool

JDK online Chinese manual


My first JAVA program

Here's a simple example of Java programming that outputs Hello World, the first instance program to get started in all languages:

public class MyFirstJavaProgram {

    public static void main(String []args) {
       System.out.println("Hello World");
    }
} 

Start learning JAVA programming