赞
踩
⭐ 作者简介:码上言
⭐ 代表教程:Spring Boot + vue-element 开发个人博客项目实战教程
⭐专栏内容:个人博客系统
⭐我的文档网站:http://xyhwh-nav.cn/
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
检查对象是否为空。如果对象为null或者为空字符串、空数组、空Collection、空Map或者空Iterator,则返回true;否则返回false。
String str = "";
boolean empty = ObjectUtils.isEmpty(str); // true
检查对象是否非空。如果对象不为null且不为空字符串、空数组、空Collection、空Map或者空Iterator,则返回true;否则返回false。
String str = "Hello";
boolean notEmpty = ObjectUtils.isNotEmpty(str); // true
比较两个对象是否相等,可以处理null值,避免了NullPointerException的出现。
String str1 = "Hello";
String str2 = "Hello";
boolean equals = ObjectUtils.equals(str1, str2); // true
计算对象的哈希码,可以处理null值。
String str = "Hello";
int hashCode = ObjectUtils.hashCode(str); // 69609650
将对象转换为字符串。如果对象为空,则返回字符串"null"。
int num = 123;
String str = ObjectUtils.toString(num); // "123"
如果对象为空,则返回默认值。
String str = null;
String defaultStr = "default";
String result = ObjectUtils.defaultIfNull(str, defaultStr); // "default"
检查多个对象是否都不为空。如果所有对象都不为空,则返回true;否则返回false。
String str1 = "Hello";
String str2 = "World";
boolean allNotNull = ObjectUtils.allNotNull(str1, str2); // true
检查多个对象中是否至少有一个不为空。如果至少有一个对象不为空,则返回true;否则返回false。
String str1 = "Hello";
String str2 = null;
boolean anyNotNull = ObjectUtils.anyNotNull(str1, str2); // true
比较两个可比较的对象的大小。可以处理null值。如果c1小于c2,则返回负数;如果c1等于c2,则返回0;如果c1大于c2,则返回正数。
Integer num1 = 123;
Integer num2 = 456;
int result = ObjectUtils.compare(num1, num2); // -1
返回一组可比较对象中的最小值,可以处理null值。
Integer num1 = 123;
Integer num2 = 456;
Integer min = ObjectUtils.min(num1, num2); // 123
返回一组可比较对象中的最大值,可以处理null值。
Integer num1 = 123;
Integer num2 = 456;
Integer max = ObjectUtils.max(num1, num2); // 456
克隆一个对象。如果对象实现了Cloneable接口,则调用其clone()方法进行克隆;否则返回null。
Person person = new Person("John", 30);
Person clone = ObjectUtils.clone(person); // 返回person的克隆对象
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。