import java.lang.reflect.*;
class A{
void a(){}
void b(){}
int c(){ return 100; }
}
class B{
public static void main(String args[]){
Class<A> o=A.class;
Method[] array=o.getDeclaredMethods();//선언되어 있는 모든 메서드 가져오기
for(Method n:array){
System.out.println(n);
}
}
}
'개발하자 > JSP&Servlet' 카테고리의 다른 글
getDeclaredMethod,getAnnotation (0) | 2015.03.28 |
---|---|
원하는 메서드 이름 얻어오기 getDeclaredMethod (0) | 2015.03.28 |
어노테이션 만드는 방법 Annotation (0) | 2015.03.28 |
emp,member list 불러와서 상세정보 뿌리기 (0) | 2015.03.27 |
추가,수정,삭제,업데이트(적용) 그리드로 만들기 (0) | 2015.03.27 |