Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

class

Example

Construct a class titled “Main”:

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

Definition and Usage

The keyword “class” is employed to define a class.

All Java code execution occurs within a class, which should begin with an uppercase letter and have a file name matching the class name.

A class functions similarly to an object constructor. Refer to the example below to observe its utilization in object creation.

More Examples

Example

Instantiate an object of the class Main named “myObj” and output the value of x.

public class Main {
  int x = 5;
 
  public static void main(String[] args) {
    Main myObj = new Main();
    System.out.println(myObj.x);
  }
}