Java 如何检查数组是否为空

Java 如何检查数组是否为空

在Java中,数组是一个对象。它是一种非基本数据类型,用于存储相同数据类型的值。

根据问题的陈述,我们需要检查数组是否为空。如果数组没有元素或者没有任何元素,就称其为空数组。

让我们通过使用Java编程语言来探索本文中如何实现。

展示一些示例

示例1

Suppose the original array is {1,3}.

在检查结果是否为空之后,结果将是−。

Array is not empty.

示例2

Suppose the original array is {}.

检查结果是否为空,结果为-

Array is empty

示例3

Suppose the original array is {1,3,4,7,8}.

检查结果是否为空 −

Array is not empty

步骤

  • 步骤1 - 声明并初始化一个整型数组。

  • 步骤2 - 获取数组的长度。

  • 步骤3 - 如果长度等于0,则数组为空,否则不为空。

  • 步骤4 - 打印所需的结果。

语法

为了获取数组的长度(即数组中的元素数),数组有一个内置属性,即 length

下面是它的语法:

array.length

其中,’array’指的是数组引用。

多种方法

我们提供了不同的方法来解决这个问题。

  • 使用静态数组和length()方法。

  • 使用用户定义的方法和length()方法。

  • 使用null检查。

让我们逐个查看程序及其输出。

方法1:使用静态数组和length()方法

示例

在这种方法中,数组元素将在程序中被初始化。然后根据算法检查数组是否为空。

public class Main {
   //main method
   public static void main(String[] args) {
      //Declare and initialize the array elements
      int arr[] = {1,3,4,7,8};

      //check if array is empty or not
      if(arr.length == 0) {
         //if length is zero then array is empty.
         System.out.println("Array is empty.");
      } else {
         //otherwise array is not empty.
         System.out.println("Array is not empty.");
      }
   }
}

输出

Array is not empty.

方法2:通过使用用户自定义方法和length()方法

示例

在这种方法中,程序将初始化数组元素。然后调用一个用户定义的方法,通过将数组作为参数传递给方法,在方法内部根据算法检查数组是否为空。

public class Main{
   //main method
   public static void main(String[] args) {
      //Declare and initialize the array elements
      int arr[] = {};

      //callin user defined method
      func(arr);   
   }
   //user defined method
   public static void func(int arr[]){
      //check if array is empty or not
      if(arr.length == 0) {
         //if length is zero then array is empty.
         System.out.println("Array is empty.");
      } 
      else {
         //otherwise the array is not empty.
         System.out.println("Array is not empty.");
      }
   }
}

输出

Array is empty.

方法3:使用null检查

示例

在这个示例中,数组被声明为null,即没有元素。使用if条件语句和等于操作符来检查数组是否为null。

public class Main{
   public static void main(String[] args){
      int arr[] = null;
      //check if array is equal to null or not by using equal to operator
      if(arr == null) {
         System.out.println("Empty array");
      } else {
         System.out.println("Not an empty array");
      }
   }
}

输出

Empty array

在这篇文章中,我们探讨了如何在Java中检查数组是否为空。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程