Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- jQuery
- Exception
- Android Apk 이름 변경
- error
- Android Apk
- css
- DataTable
- MySQL
- Eclipse
- 안드로이드
- java error
- tomcat
- Firebase
- fragment
- CSS사용법
- Kotlin
- Program type already present
- Android
- Java
- Android Apk 이름
- release unsigned
- release Apk
- JavaScript
- FLUTTER
- spring
- R프로그래밍
- android error
- html
- android fragment
- apache gzip
Archives
- Today
- Total
selfstarter
Java instanceof example 본문
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
'Server > Java' 카테고리의 다른 글
문자인식... 을 도전했으나 실패 (0) | 2020.06.15 |
---|---|
Java Reflection으로 class 정보 가져오기 (0) | 2020.06.05 |
No enclosing instance of type Myani is accessible in Java (0) | 2020.05.30 |
non-static method 'getclass()' cannot be referenced from a static context 해결방법 (0) | 2020.05.23 |
Java split 공백도 배열에 추가되도록 하기 (0) | 2020.05.20 |