what's this sign == is called in java
Answers
Answered by
1
Answer:
The == operator: The == is a relational operator in Java that is used to compare two operands. It is used to determine whether the two operands are equal or not. Using the == operator, you can compare any primitive type such as int, char, float and Booleans. After comparison, the == operator returns a boolean value.
Similar questions