selfstarter

Java instanceof example 본문

Server/Java

Java instanceof example

selfstarter 2020. 5. 30. 14:30

Java instanceof example

  • instanceof는 데이터의 자료형을 확인해서 데이터 자료형에 따라 각자 다른 처리를 다르게 할 때 자주 쓰인다
  • 부모로 Object를 가지고 있는 DataType만 instanceof로 비교가 가능하다
  • Wrapper class가 아닌 기본 자료형 int도 Integer로 확인되는 걸 확인할 수 있다
  • 상속을 한 class는 instanceof를 사용할 때 반드시 child class 형을 먼저 확인해야 한다. child class 보다 parent class가 먼저 있다면 parent class type으로 인식된다. 반드시 자식 class type을 먼저 체크하자

Example

package javaTest;

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

public class TestMain {
    public static void main(String[] args) {
        AAA aaa = new AAA();
        BBB aaaChild = new BBB();
        int num = 10;
        Integer IntNum = 20;
        Object obj = null;
        String str = "hello";
        String strEmpty = "";
        List<String> list = new ArrayList();
        list.add("hi");
        list.add("hello");
        List<String> emptyList = new ArrayList();

        System.out.println("aaa Date Type is " + getDataType(aaa));
        // child class 보다 parent class가 먼저 있다면 parent class type으로 인식된다
        // 반드시 자식 class type을 먼저 써주자
        System.out.println("aaaChild class Date Type is " + getDataType(aaaChild));
        System.out.println("int Date Type is " + getDataType(num));
        System.out.println("IntNum Date Type is " + getDataType(IntNum));
        System.out.println("null obj Date Type is " + getDataType(obj));
        System.out.println("str Date Type is " + getDataType(str));
        System.out.println("strEmpty Date Type is " + getDataType(strEmpty));
        System.out.println("list Date Type is " + getDataType(list));
        System.out.println("emptyList Date Type is" + getDataType(emptyList));
    }

    public static String getDataType(Object obj) {
        if (obj instanceof String && !((String) obj).isEmpty()) {
            return "String";
        } else if (obj instanceof Integer) {
            return "Integer";
        } else if (obj instanceof BBB) {
            return "BBB";            
        } else if (obj instanceof AAA) {
            return "AAA";
        } else if (obj instanceof List && !((List) obj).isEmpty()) {
            return "List";
        }
        return "null";
    }

    static public class AAA {
        public AAA() {
        }
    }

    static public class BBB extends AAA {
        public BBB() {
        }
    }
}

Null Check Function

public static boolean isNull(Object obj) {
    if (obj == null) {
        return true;
    } else if (obj instanceof String && ((String) obj).trim().isEmpty()) {
        return true;
    } else if (obj instanceof List && ((List) obj).isEmpty()) {
        return true;
    } else if (obj instanceof Map && ((Map) obj).isEmpty()) {
        return true;
    } else if (obj instanceof Object[] && ((Object[]) obj).length == 0) {
        return true;
    }
    return false;
}

result

aaa Date Type is false
aaaChild class Date Type is Null? false
int Date Type is Null?false
IntNum Date Type is Null?false
null obj Date Type is Null?true
str Date Type is Null?false
strEmpty Date Type is Null?true
list Date Type is Null?false
emptyList Date Type is Null?true
Comments