| The Java Language | CS 161 - Java |
| Operator | Description |
|---|---|
| (op1 > op2) | Is op1 greater than op2? |
| (op1 >= op2) | Is op1 greater than or equal to op2? |
| (op1 < op2) | Is op1 less than op2? |
| (op1 <= op2) | Is op1 less than or equal to op2? |
| (op1 == op2) | Is op1 equal to op2? |
| (op1 != op2) | Is op1 not equal to op2? |
if (args.length == 0) { ...
|
jwd |