java中反省数组的空数据怎么表示
时间: 2023-06-19 22:10:27 浏览: 80
人生靠反省,Java靠泛型
在Java中,数组的空数据可以用null值表示。当一个数组元素为空时,该元素的值为null。例如,对于一个String类型的数组,如果某个元素没有赋值,则该元素的值为null。在使用数组元素时,需要先判断该元素是否为null,以避免NullPointerException异常的发生。可以使用if语句或者三目运算符来进行判断,例如:
```
String[] arr = new String[3];
arr[0] = "Hello";
arr[2] = "World";
if (arr[1] == null) {
System.out.println("arr[1] is empty");
}
String str = arr[2] != null ? arr[2] : "default value";
System.out.println(str); // output: World
```
阅读全文