Java - List empty(null) 체크, 3가지 방법

자바에서 리스트가 비어있는지, null 객체인지 확인하는 방법을 소개합니다.

1. List.isEmpty()로 리스트가 비어있는지 확인

List.isEmpty()는 리스트 객체가 어떤 요소도 갖고 있지 않을 때 true를 리턴합니다. 즉, 리스트가 비어있을 때 true를 리턴합니다.

만약 리스트 객체가 null이라면, isEmpty() 메소드 호출 시 NullPointerException이 발생하기 때문에 null check도 함께 해야합니다. null인 경우에도 empty와 동일하게 처리할 것인지 다른 예외 처리를 할 것인지는 상황에 따라 다르게 처리할 수도 있습니다.

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class Example1 {

    public static void main(String[] args) {

        List<String> list = Arrays.asList("apple", "grape", "banana", "kiwi");
        if (list == null || list.isEmpty()) {
            System.out.println("list is empty");
        }

        List<String> list2 = new ArrayList<>();
        if (list2 == null || list2.isEmpty()) {
            System.out.println("list2 is empty");
        }

        List<String> list3 = null;
        if (list3 == null || list3.isEmpty()) {
            System.out.println("list3 is empty");
        }
    }
}

Output:

list2 is empty
list3 is empty

2. List.size()로 리스트가 비어있는지 확인

List.size()는 리스트의 요소 개수를 리턴합니다. 만약 리스트가 비어있다면 0을 리턴합니다. 리스트의 길이와 0을 비교하여 비어있는지 확인할 수 있습니다. 위와 마찬가지로, List 객체가 null일 가능성이 있다면 null check를 먼저 해야합니다.

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class Example2 {

    public static void main(String[] args) {

        List<String> list = Arrays.asList("apple", "grape", "banana", "kiwi");
        if (list == null || list.size() == 0) {
            System.out.println("list is empty");
        }

        List<String> list2 = new ArrayList<>();
        if (list2 == null || list2.size() == 0) {
            System.out.println("list2 is empty");
        }

        List<String> list3 = null;
        if (list3 == null || list3.size() == 0) {
            System.out.println("list3 is empty");
        }
    }
}

Output:

list2 is empty
list3 is empty

3. CollectionUtils.isEmpty()로 리스트가 비어있는지 확인

CollectionUtils는 Apache commons 라이브러리에서 제공하는 클래스입니다.

Maven 프로젝트에서 아래와 같이 설정할 수 있으며, Gradle 등의 다른 프로젝트는 mvnrepository를 참고하시어 설정하시면 됩니다.

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-collections4</artifactId>
    <version>4.1</version>
</dependency>

라이브러리 설정을 하였다면 CollectionUtils.isEmpty()를 사용할 수 있습니다. 이 메소드는 인자로 전달된 리스트 객체가 null이거나 empty일 때 true를 리턴합니다.

아래와 같이 null check를 하지 않고 사용할 수 있기 때문에, 더 적은 코드로 위와 동일한 동작을 구현할 수 있습니다.

import org.apache.commons.collections4.CollectionUtils;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class Example3 {

    public static void main(String[] args) {

        List<String> list = Arrays.asList("apple", "grape", "banana", "kiwi");
        if (CollectionUtils.isEmpty(list)) {
            System.out.println("list is empty");
        }

        List<String> list2 = new ArrayList<>();
        if (CollectionUtils.isEmpty(list2)) {
            System.out.println("list2 is empty");
        }

        List<String> list3 = null;
        if (CollectionUtils.isEmpty(list3)) {
            System.out.println("list3 is empty");
        }
    }
}

Output:

list2 is empty
list3 is empty

3.1 CollectionUtils.isEmpty()의 구현 코드

라이브러리에 구현된 CollectionUtils.isEmpty()의 코드를 보면, 아래와 같이 메소드 안에서 null check와 isEmpty()를 체크하고 있습니다.

public static boolean isEmpty(final Collection<?> coll) {
    return coll == null || coll.isEmpty();
}
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha