Basic Structure of a Java Program

Regan Thapa
Estimated read time: 1 min



 

Basic Structure of a Java Program: Understanding our First Java Hello World Program

Basic Structure of a Java Program

package com.company; // Groups classes
public class Main{ // Entrypoint into the application
public static void main(String[]args){
System.out.println(Hello World);
}
}

Working of the "Hello World" program shown above :

  1. package com.company :
    • Packages are used to group the related classes.
    • The "Package" keyword is used to create packages in Java.
    • Here, com.company is the name of our package.
  2. public class Main :
    • In Java, every program must contain a class.
    • The filename and name of the class should be the same.
    • Here, we've created a class named "Main".
    • It is the entry point to the application.
  3. public static void main(String[]args){..} :
    • This is the main() method of our Java program.
    • Every Java program must contain the main() method.
  4. System.out.println("Hello World"):
    • The above code is used to display the output on the screen.
    • Anything passed inside the inverted commas is printed on the screen as plain text.

Naming Conventions

  • For classes, we use Pascal Convention. The first and Subsequent characters from a word are capital letters (uppercase).
    Example: Main, MyScanner, MyEmployee, CodeWithHarry
  • For functions and variables, we use camelCaseConvention. Here the first character is lowercase, and the subsequent characters are uppercase like myScanner, myMarks, CodeWithHarry

Post a Comment

Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.
REGAN THAPA Welcome to WhatsApp chat
Howdy! How can we help you today?
Type here...