integer比较java工具类
时间: 2023-11-20 22:17:11 浏览: 295
比较全的java工具类
4星 · 用户满意度95%
在Java中,你可以使用Integer类的静态方法来进行整数比较。下面是一个简单的工具类示例,用于比较两个整数的大小:
```java
public class IntegerComparator {
public static int compare(int num1, int num2) {
return Integer.compare(num1, num2);
}
public static void main(String[] args) {
int a = 5;
int b = 10;
int result = compare(a, b);
if (result < 0) {
System.out.println("a 小于 b");
} else if (result > 0) {
System.out.println("a 大于 b");
} else {
System.out.println("a 等于 b");
}
}
}
```
在上面的示例中,`compare()`方法使用了`Integer.compare()`来比较两个整数。返回值为负数表示第一个整数小于第二个整数,返回值为正数表示第一个整数大于第二个整数,返回值为0表示两个整数相等。
你可以根据需要修改这个工具类,并在`main()`方法中测试它。
阅读全文