Relational operators: Depending on whether the comparison between the operands holds or not, the following operators compare the passed operands and generate a TRUE or FALSE value:
Operataors |
Type |
Description |
A = B |
all primitive types |
TRUE if expression A is equivalent to expression B; otherwise FALSE |
A != B |
all primitive types |
TRUE if expression A is not equivalent to expression B; otherwise FALSE |
A < B |
all primitive types |
TRUE if expression A is less than expression B; otherwise FALSE |
A <= B |
all primitive types |
TRUE if expression A is less than or equal to expression B; otherwise FALSE |
A > B |
all primitive types |
TRUE if expression A is greater than expression B; otherwise ... |