In this chapter you will learn:
- What is an operator?
- How many types of operators are available in Java?
- Programming examples of Operator in java
What is an Operator?
Operators are the special symbol which performs specific tasks on variables as addition, subtraction, compare, check condition, assign value etc.
In the previous chapter you have learned how to initialize variable in Java. In this chapter you will know to performing operation on defined variable.
How many types of operators available in Java?
- Arithmetic, Assignment AND Unary Operator
- Relational Operator
- Logical OR Conditional Operator
- ( ? : ) Conditional/Ternary Operator
- Bitwise Operator
Summary
In the next chapter we will learn about all these operators one by one. We also tried to provide complete programming example to you so that you can understand the entire topic easily. Next chapter you will learn about Assignment, Arithmetic and Unary Operator in Java.