- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java Separators
Java separators are symbols used to separate elements of a Java program and provide structure to the code. Here's a summary:
Semicolon (;):
- Used to terminate statements in Java.
- Every statement in Java must end with a semicolon.
Comma (,):
- Used to separate multiple elements in a list, such as variable declarations or method arguments.
Parentheses (()):
- Used to enclose parameters in method declarations and invocations.
- Also used in expressions to control operator precedence.
Braces ({}):
- Used to define blocks of code, such as method bodies, class bodies, and control flow statements (if, else, while, for).
Square Brackets ([]):
- Used to declare arrays and access elements of arrays.
Period (.):
- Used for member access, to access fields and methods of objects.
Example
public class SeparatorsExample {
public static void main(String[] args) {
// Semicolon separates statements
int x = 10;
int y = 20;
System.out.println("Sum: " + (x + y));
// Comma separates elements in a list
int a = 1, b = 2, c = 3;
// Parentheses in method invocation
System.out.println("Hello, Java!");
// Braces define a block of code
if (x > y) {
System.out.println("x is greater than y");
} else {
System.out.println("x is less than or equal to y");
}
// Square brackets in array declaration and access
int[] numbers = {1, 2, 3, 4, 5};
System.out.println("First element: " + numbers[0]);
// Period for member access
String message = "Hello";
System.out.println(message.length());
}
}
Summary
Java separators, including semicolons, commas, parentheses, braces, square brackets, and periods, play essential roles in structuring Java code and defining its syntax. Understanding these separators is crucial for writing correct and well-organized Java programs.