What are Operators in Java?
0 117
What are Operators in Java?
In Java, operators are special symbols or keywords that perform operations on variables and values. They are the foundation of expressions and are essential for performing tasks like arithmetic calculations, comparisons, logical decisions, and more. Understanding how operators work in Java is crucial for writing efficient and error-free code.
Types of Operators in Java
Java provides several types of operators, each serving a different purpose. Let's explore them one by one.
1. Arithmetic Operators
These are used to perform basic mathematical operations like addition, subtraction, multiplication, etc.
int a = 10; int b = 5; System.out.println(a + b); // 15 System.out.println(a - b); // 5 System.out.println(a * b); // 50 System.out.println(a / b); // 2 System.out.println(a % b); // 0
2. Relational (Comparison) Operators
Used to compare two values and return a boolean result.
int x = 10; int y = 20; System.out.println(x == y); // false System.out.println(x != y); // true System.out.println(x < y); // true System.out.println(x > y); // false System.out.println(x <= y); // true System.out.println(x >= y); // false
3. Logical Operators
Logical operators are used to combine multiple conditions.
int a = 5; int b = 10; System.out.println(a > 2 && b > 5); // true System.out.println(a > 6 || b > 5); // true System.out.println(!(a > 2)); // false
4. Assignment Operators
These are used to assign values to variables.
int num = 10; num += 5; // same as num = num + 5 System.out.println(num); // 15
5. Unary Operators
Unary operators work with only one operand. Examples include increment (++), decrement (--), and negation (-).
int a = 5; System.out.println(+a); // 5 System.out.println(-a); // -5 System.out.println(++a); // 6 System.out.println(--a); // 5
6. Bitwise Operators
These operators perform bit-level operations and are used mainly in low-level programming.
int a = 5; // 0101 int b = 3; // 0011 System.out.println(a & b); // 1 (0001) System.out.println(a | b); // 7 (0111) System.out.println(a ^ b); // 6 (0110) System.out.println(~a); // -6
7. Ternary Operator
This is a shorthand for if-else
conditions.
int a = 10, b = 20; int max = (a > b) ? a : b; System.out.println("Max is: " + max); // Max is: 20
8. instanceof Operator
The instanceof
operator is used to test whether an object is an instance of a specific class or subclass.
String str = "Hello"; System.out.println(str instanceof String); // true
9. Operator Precedence
Operator precedence determines the order in which operations are performed. For example, multiplication has higher precedence than addition.
int result = 10 + 2 * 5; // 10 + (2*5) = 20 System.out.println(result); // 20
Conclusion
Understanding what are Operators in Java is a fundamental step in becoming a proficient Java developer. From arithmetic to logical and bitwise operations, each type plays a vital role in writing robust code. Mastering these will help you write cleaner, more efficient programs.
If you’re passionate about building a successful blogging website, check out this helpful guide at Coding Tag – How to Start a Successful Blog. It offers practical steps and expert tips to kickstart your blogging journey!
For dedicated UPSC exam preparation, we highly recommend visiting www.iasmania.com. It offers well-structured resources, current affairs, and subject-wise notes tailored specifically for aspirants. Start your journey today!

Share:
Comments
Waiting for your comments