Java的isnull方法有哪些常见用法

avatar
作者
筋斗云
阅读量:0

  1. 判断对象是否为null:
Object obj = null; if (Objects.isNull(obj)) {     System.out.println("对象为空"); } 
  1. 判断字符串是否为null或空字符串:
String str = null; if (str == null || str.isEmpty()) {     System.out.println("字符串为空"); } 
  1. 判断集合是否为null或空集合:
List<String> list = null; if (list == null || list.isEmpty()) {     System.out.println("集合为空"); } 
  1. 判断数组是否为null或空数组:
String[] array = null; if (array == null || array.length == 0) {     System.out.println("数组为空"); } 

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!