[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/rizwan-ai/JavaForAndroid/main/JavaLecture2.java [Back]  [Original]

// package com.rit;

public class JavaLecture2 {

    public static void main(String[] args) {

        java.lang.System.out.println("Hi Java");
        // jdk-15      ---  JDK (Java Development Kit)
        // java.base   ---  Module (Defines the foundational APIs of the Java SE Platform) 
        // java        ---  Package
        // lang        ---  Sub Package 
        // java.lang   ---  Pacakge (Provides classes that are fundamental to the design of the Java Programming Language.)
        // System      ---  Class
        // out         ---  Field
        // println()   ---  Method
        // "Hi Java"   ---  String Literal

    }
}

Web Proxy Viewer  |  New URL  |  Original Page