A typical Java program has the following structure:
public class ClassName {
// Declaration of variables (optional)
public static void main(String[] args) {
// Main method
// Code execution starts here
}
// Other methods and classes (optional)
}
public static void main(String[] args)
is the entry point of any Java application. This method is invoked when the program is run.{}
of the main
method or other methods.Java provides several types of operators that can be used to perform various operations on variables and values.
Arithmetic Operators: Used to perform basic arithmetic operations.
+
(Addition), -
(Subtraction), *
(Multiplication), /
(Division), %
(Modulus)int a = 10, b = 5;
int result = a + b; // result is 15
Relational Operators: Used to compare two values.
==
(Equal to), !=
(Not equal to), >
(Greater than), <
(Less than), >=
(Greater than or equal to), <=
(Less than or equal to)int a = 5, b = 10;
boolean result = a < b; // result is true
Logical Operators: Used to perform logical operations.
&&
(Logical AND), ||
(Logical OR), !
(Logical NOT)boolean x = true, y = false;
boolean result = x && y; // result is false
Assignment Operators: Used to assign values to variables.
=
(Assign), +=
, -=
, *=
, /=
, etc.int a = 5;
a += 10; // a is now 15
Unary Operators: Operate on a single operand.
++
(Increment), --
(Decrement), -
(Negation)int a = 5;
a++; // a is now 6
Ternary Operator: Conditional operator with three operands.
condition ? expr1 : expr2
int a = 10, b = 5;
int result = (a > b) ? a : b; // result is 10
Bitwise Operators: Perform operations on bits.
&
(AND), |
(OR), ^
(XOR), ~
(Complement), <<
(Left shift), >>
(Right shift)int a = 5, b = 3;
int result = a & b; // result is 1
Java programs are made up of various basic elements known as tokens. These are the smallest units in Java syntax and include:
class
, public
, if
, while
).myVar
, calculate()
, MyClass
).5
, 3.14
, 'A'
).+
, -
, *
).;
, {}
, []
).In Java, you can pass arguments to the main
method via the command line. These arguments are stored in an array of strings.
public class CommandLineExample {
public static void main(String[] args) {
for (String arg : args) {
System.out.println(arg);
}
}
}
java CommandLineExample Hello World 123
Hello
World
123
Command line arguments allow customizing the behavior of the main
method based on user input.
Java supports two types of data types: primitive and reference.
Primitive Data Types:
int
: Integer values (e.g., int a = 10;
)double
: Decimal numbers (e.g., double d = 3.14;
)char
: Single characters (e.g., char c = 'A';
)boolean
: True or false values (e.g., boolean flag = true;
)byte
, short
, long
, float
: Other numeric types.Reference Data Types:
import java.util.Scanner;
public class ReadInput {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Reading an integer
System.out.print("Enter an integer: ");
int num = scanner.nextInt();
// Reading a string
System.out.print("Enter a string: ");
String str = scanner.next();
// Output
System.out.println("You entered integer: " + num);
System.out.println("You entered string: " + str);
}
}
Java supports three types of iteration statements:
For Loop: Executes a block of statements a specific number of times.
for (int i = 0; i < 5; i++) {
System.out.println(i);
}
While Loop: Executes a block of statements while a condition is true.
int i = 0;
while (i < 5) {
System.out.println(i);
i++;
}
Do-While Loop: Executes a block of statements at least once, then repeats while a condition is true.
int i = 0;
do {
System.out.println(i);
i++;
} while (i < 5);
Type Casting is the process of converting one data type into another, either explicitly (manual casting) or implicitly (automatic promotion).
Explicit Casting:
int a = 10;
double b = (double) a; // Manual casting from int to double
Automatic Promotion: Happens when a smaller data type is converted into a larger data type (e.g., int
to long
).
int a = 10;
long b = a; // Automatic promotion to long
Selection statements are used to execute code based on conditions:
If Statement: Executes a block of code if the condition is true.
if (x > 0) {
System.out.println("Positive");
}
If-Else Statement: Executes one block of code if the condition is true, otherwise executes another.
if (x > 0) {
System.out.println("Positive");
} else {
System.out.println("Negative");
}
Switch Statement: Used to select one of many code blocks to execute.
switch (x) {
case 1:
System.out.println("One");
break;
case 2:
System.out.println("Two");
break;
default:
System.out.println("Default");
}
Java is based on Object-Oriented Programming (OOP) principles:
A basic Java program structure includes several key components:
public class Main { // Class Declaration public static void main(String[] args) { // Main Method System.out.println("Hello, World!"); // Output Statement } }
Explanation: The program starts with the class declaration, followed by the main method, which is the entry point. Inside the main method, code is executed, and the program outputs text to the console.
Java has several types of operators:
Example:
int a = 10, b = 5; System.out.println(a + b); // Output: 15 System.out.println(a == b); // Output: false System.out.println(a > b); // Output: true
Tokens are the smallest elements in a program. Java’s tokens are:
Command-line arguments allow you to customize the behavior of the `main()` method.
public class CommandLineExample { public static void main(String[] args) { if (args.length > 0) { System.out.println("Hello " + args[0]); } else { System.out.println("No arguments passed"); } } }
Example Execution:
$ java CommandLineExample John Hello John
Java has two types of data types:
Example:
int a = 100; double b = 3.14; boolean flag = true; char c = 'A';
import java.util.Scanner; public class ScannerExample { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("Enter your name: "); String name = scanner.nextLine(); System.out.print("Enter your age: "); int age = scanner.nextInt(); System.out.println("Hello, " + name + ". You are " + age + " years old."); } }
Java has three types of iterative statements: `for`, `while`, and `do-while`.
For Loop Example: for (int i = 0; i < 5; i++) { System.out.println(i); // Prints 0, 1, 2, 3, 4 } While Loop Example: int i = 0; while (i < 5) { System.out.println(i); // Prints 0, 1, 2, 3, 4 i++; } Do-While Loop Example: int i = 0; do { System.out.println(i); // Prints 0, 1, 2, 3, 4 i++; } while (i < 5);
Type Casting: Converting one data type into another.
int a = 10; double b = a; // Implicit casting double c = 9.99; int d = (int) c; // Explicit casting
Automatic Promotion: When operands are of different types, the smaller one is promoted to the larger type.
byte a = 10; int b = 20; System.out.println(a + b); // `a` is promoted to `int`
Java supports selection statements like `if`, `if-else`, `if-else if`, and `switch`.
If Statement: if (a > b) { System.out.println("a is greater"); }
Object-Oriented Principles in Java:
In Java, selection statements allow the program to make decisions and execute specific blocks of code based on conditions. The primary selection statements are:
[Start] --> [Condition] | | Yes No | | [Execute True] [Execute False] | | [End] [End]
public class SelectionExample { public static void main(String[] args) { int a = 10, b = 20; if (a > b) { System.out.println("a is greater than b"); } else { System.out.println("b is greater than a"); } } }
Object-Oriented Programming (OOP) is a paradigm based on the concept of objects, which are instances of classes. The four core principles of OOP are:
Example: Using getters and setters to access private variables.
Example: A `Dog` class can inherit from an `Animal` class.
Example: Overloading the `add()` method with different parameters.
Example: A `Car` class might have a `start()` method, but the internal engine starting mechanism is hidden from the user.
In Java, a class is a blueprint for creating objects, and an object is an instance of a class. The class defines properties and behaviors, while the object represents specific data.
class Car { String model; int year; // Constructor Car(String model, int year) { this.model = model; this.year = year; } // Method to display car info void displayInfo() { System.out.println("Car model: " + model); System.out.println("Car year: " + year); } } public class Main { public static void main(String[] args) { Car car1 = new Car("Tesla Model S", 2022); // Creating an object car1.displayInfo(); // Calling method on the object } }
The static keyword in Java is used for memory management. It is applied to variables, methods, and blocks. A static variable or method belongs to the class, rather than instances of the class. Static methods can be called without creating an instance of the class.
class Counter { static int count = 0; // Static variable static void increment() { // Static method count++; } } public class Main { public static void main(String[] args) { Counter.increment(); Counter.increment(); System.out.println("Counter: " + Counter.count); // Output: 2 } }
Access specifiers determine the visibility of classes, methods, and variables. The four main access specifiers in Java are:
class Person { private String name; // Private variable // Getter and Setter for name public void setName(String name) { this.name = name; } public String getName() { return name; } } public class Main { public static void main(String[] args) { Person p = new Person(); p.setName("John"); System.out.println("Person's name: " + p.getName()); } }
In Java, constructors are special methods used to initialize objects. There are two types of constructors:
class Student { String name; int age; // Default constructor Student() { name = "Unknown"; age = 0; } // Parameterized constructor Student(String name, int age) { this.name = name; this.age = age; } } public class Main { public static void main(String[] args) { Student s1 = new Student(); // Using default constructor System.out.println("Name: " + s1.name + ", Age: " + s1.age); Student s2 = new Student("Alice", 22); // Using parameterized constructor System.out.println("Name: " + s2.name + ", Age: " + s2.age); } }