Java 102: Understanding Java Syntax – Classes, Methods & Print Statements

ARUN PALANIVELARUN PALANIVEL
4 min read

Java 102 - Understanding Java Syntax: Classes, Methods, main() Method, and Print Statements

πŸ“Œ Introduction

After setting up Java and running your first program, it’s time to understand Java’s core syntax. In this blog, we will cover essential Java elements: Classes, Methods, the main() Method, and Print Statements. Mastering these concepts will help you write efficient Java programs.


πŸ“Œ 1. Java Classes – The Building Blocks

πŸ”Ή What is a Class?

A class in Java is a blueprint for objects. It defines properties (variables) and behaviors (methods). Every Java program must have at least one class.

πŸ”Ή Creating a Class

Here’s a simple example of a Java class:

// Defining a class
public class MyClass {
    // Fields (Variables)
    int x = 10;
}

πŸ”Ή Instantiating a Class (Creating an Object)

To use a class, we need to create an object:

public class Main {
    public static void main(String[] args) {
        MyClass obj = new MyClass(); // Creating an object
        System.out.println(obj.x); // Accessing the variable
    }
}

βœ… Output: 10


πŸ“Œ 2. Methods in Java

πŸ”Ή What is a Method?

A method is a block of code that performs a specific task. Methods make programs modular and reusable.

πŸ”Ή Defining a Method

public class MyClass {
    // Method definition
    public void sayHello() {
        System.out.println("Hello, Java!");
    }
}

πŸ”Ή Calling a Method

public class Main {
    public static void main(String[] args) {
        MyClass obj = new MyClass();
        obj.sayHello(); // Calling the method
    }
}

βœ… Output: Hello, Java!

πŸ”Ή Method with Parameters

public class MyClass {
    public void greet(String name) {
        System.out.println("Hello, " + name + "!");
    }
}

πŸ”Ή Calling the Method

public class Main {
    public static void main(String[] args) {
        MyClass obj = new MyClass();
        obj.greet("Alice");
    }
}

βœ… Output: Hello, Alice!

πŸ”Ή Method with Return Type

public class Calculator {
    public int add(int a, int b) {
        return a + b;
    }
}
public class Main {
    public static void main(String[] args) {
        Calculator calc = new Calculator();
        int result = calc.add(5, 7);
        System.out.println("Sum: " + result);
    }
}

βœ… Output: Sum: 12


πŸ“Œ 3. The main() Method – Java’s Entry Point

πŸ”Ή What is main()?

Every Java program starts execution from the main() method. It serves as the entry point.

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

βœ… Output: Java Program Started

πŸ”Ή Understanding the main() Method

public static void main(String[] args) {
  • public β†’ Accessible from anywhere.

  • static β†’ No need to create an object to call it.

  • void β†’ No return value.

  • main β†’ Method name.

  • String[] args β†’ Used for command-line arguments.


πŸ“Œ 4. Print Statements in Java

πŸ”Ή Printing Output

Java provides System.out.println() to print messages:

System.out.println("Hello, Java!");

βœ… Output: Hello, Java!

πŸ”Ή Print vs. Println

System.out.print("Hello, ");
System.out.print("Java!");

βœ… Output: Hello, Java! (on the same line)

System.out.println("Hello, ");
System.out.println("Java!");

βœ… Output:

Hello,
Java!

πŸ”Ή Formatting Output

int age = 20;
System.out.printf("I am %d years old.", age);

βœ… Output: I am 20 years old.


πŸ“Œ 5. Common Errors & Fixes

❌ Forgetting to Define the main() Method

❌ Error: Main method not found βœ… Fix: Ensure your class has public static void main(String[] args)

❌ Forgetting Semicolons

❌ Error: ';' expected βœ… Fix: End each statement with ;

❌ Mismatched Brackets

❌ Error: '}' expected βœ… Fix: Ensure each { has a corresponding }


πŸ“Œ 6. Next Steps

🎯 Now that you understand Java syntax, here’s what to learn next: βœ… Java Variables & Data Types βœ… Operators & Control Statements βœ… Loops & Arrays

Stay tuned for our next blog: β€œMastering Java Variables & Data Types” πŸš€


πŸ“Œ Summary

βœ” Java programs are written inside classes. βœ” Methods define reusable code blocks. βœ” The main() method is the entry point. βœ” System.out.println() is used for printing output.

With this knowledge, you’re ready to start writing Java programs! πŸ’»πŸ”₯

10
Subscribe to my newsletter

Read articles from ARUN PALANIVEL directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

ARUN PALANIVEL
ARUN PALANIVEL

Learning & Teaching Java β˜• | Software Development Enthusiast πŸ’» | Exploring DSA & Problem Solving πŸš€ | Sharing Knowledge to Grow Together!