Java Reflection - Getters and Setters

1527 단어 자바
원본 링크:http://tutorials.jenkov.com/java-reflection/getters-setters.html
자바 반 사 를 사용 하면 프로그램 이 실 행 될 때 classes 의 methods 를 관찰 하고 이 방법 을 호출 할 수 있 습 니 다.methods 를 통 해 우 리 는 주어진 클래스 에 도대체 어떤 get, set 방법 이 있 는 지 알 수 있다.우 리 는 get, set 방법 을 명시 적 으로 접근 할 수 없 기 때문에 하나의 모든 방법 을 옮 겨 다 니 며 get 이나 set 방법 인지 아 닌 지 를 판단 해 야 합 니 다.우선 get, set 방법 에 대해 정 의 를 내 립 시다.
Get 방법
1. get 방법 이름 은 "get" 으로 시작 합 니 다.
2. 매개 변수 개 수 는 0 이다.
3 、 반환 값 이 있 습 니 다
Set 방법
1. set 방법 이름 은 "set" 로 시작 합 니 다.
2. 매개 변수 가 하나 밖 에 없습니다.set 방법 은 반환 값 이 있 을 수도 있 고 반환 값 이 없 을 수도 있 습 니 다.일부 set 방법의 반환 void, 일부 set 방법 은 집합 을 되 돌려 줍 니 다. 일부 set 방법 은 방법 호출 체인 에 사용 되 고 구체 적 인 반환 유형 도 잘 모 르 기 때문에 우 리 는 set 방법의 반환 유형 을 함부로 가정 하지 마 십시오.다음 코드 는 get 과 set 방법 을 찾 을 수 있 습 니 다.

public static void printGettersSetters(Class aClass){
  Method[] methods = aClass.getMethods();

  for(Method method : methods){
    if(isGetter(method)) System.out.println("getter: " + method);
    if(isSetter(method)) System.out.println("setter: " + method);
  }
}

public static boolean isGetter(Method method){
  if(!method.getName().startsWith("get"))      return false;
  if(method.getParameterTypes().length != 0)   return false;  
  if(void.class.equals(method.getReturnType()) return false;
  return true;
}

public static boolean isSetter(Method method){
  if(!method.getName().startsWith("set")) return false;
  if(method.getParameterTypes().length != 1) return false;
  return true;
}

좋은 웹페이지 즐겨찾기