본문 바로가기

JAVA

[JAVA] Object 값 List 여부 확인

 

 

Object 값이 List 인지 확인 하고 싶다.

 

Object obj = new Object();

if( obj instanceof List){

}