카테고리 없음

Method 이용한 리플렉션 방법

generator 2013. 2. 15. 14:33



  Method lengthMethod = null;
  String aa = "hello!!";
  lengthMethod = String.class.getMethod("length");
  System.out.println((lengthMethod.invoke(aa)));