상상 너머 그 무언가...

객체의 타입체크 ( type of instance ) 본문

개발관련(Development)/플래시(Flash)

객체의 타입체크 ( type of instance )

Clack 2012. 10. 4. 11:36

typeof 라는 메소드가 있지만  좀더 쉽게 쓰는 방법은 is 메소드 이다.


if( _target is DisplayObject )



위와 같이 입력하면 _target 객체가 DisplayObject 인지 아닌지에 대한 true, false 값을 리턴한다.

is 메소드를 사용하면 상속받은 부모클래스로도 타입체크가 가능하다.



출처 : http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9b90204-7f8a.html