자바(java)에서 배열(Array)여부를 체크하는 방법

By | 6월 19, 2012

1. 배열객체.getClass().isArray() 사용

   - primitive type의 배열에도 사용할 수 있다.
   - 객체가 null일 경우 NullPointerException을 발생시킨다.

2. 배열객체 instanceof Object[] 사용

   - primitive type의 배열에는 사용할 수 없는 듯 하다.
   - 객체가 null일 경우 false를 리턴한다.

* 참고 링크

   - 
http://stackoverflow.com/questions/219881/java-array-reflection-isarray-vs-instanceof 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments