124
Java Byte compareUnsigned() method
The compareUnsigned() method of Java Byte class compares two byte objects numerically by treating the values as unsigned.
Syntax:
Parameters:
The parameters ‘x’ and ‘y’ represent the first and second byte value to compare.
Return Value
This method returns an integer value.
- It returns zero, if both the parameters are equal(x==y).
- It returns value greater than zero, if x is greater than y as unsigned values(x>y).
- It returns value less than zero, if x if smaller than y as unsigned values (x<y).
Example 1
Output:
compareUnsigned method will return 1
Example 2
Output:
-9 is greater than -10
Next TopicJava Byte