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

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! π»π₯
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!