본문 바로가기

개발하자/JSP&Servlet

원하는 메서드 이름 얻어오기 getDeclaredMethod

import java.lang.reflect.*;
class A{
 void a(){}
 void b(){}
 int c(){ return 100; }
}
class B{
 public static void main(String args[]) throws NoSuchMethodException {
 Class<A> o=A.class;

System.out.println(o.getDeclaredMethod("c"));    //원하는 메서드 이름 얻어오기

 }
}