> Java > java지도 시간 > 본문

Java 리플렉션 고급

黄舟
풀어 주다: 2017-02-24 09:47:47
원래의
1353명이 탐색했습니다.


우리는 일반적으로 리플렉션을 사용합니다 첫 번째 방법, 먼저 Class.forName(clssName)을 살펴보겠습니다.
참고: 들어오는 className은클래스 의 전체 경로입니다. 그렇지 않으면 오류 java.lang.ClassNotFoundException가 보고됩니다.

public static Class<?> forName(String className)                
throws ClassNotFoundException {        
return forName0(className, true, ClassLoader.getCallerClassLoader());
    }
로그인 후 복사
로그인 후 복사

ClassLoader.getCallerClassLoader()ClassLoader를 로드하기 위해 forName0 메소드를 호출합니다.

    // Returns the invoker&#39;s class loader, or null if none.
    // NOTE: This must always be invoked when there is exactly one intervening
    // frame from the core libraries on the stack between this method&#39;s
    // invocation and the desired invoker.
    static ClassLoader getCallerClassLoader() {
        // NOTE use of more generic Reflection.getCallerClass()
        Class caller = Reflection.getCallerClass(3);
        // This can be null if the VM is requesting it        
        if (caller == null) {            
        return null;
        }
        // Circumvent security check since this is package-private        
        return caller.getClassLoader0();
    }
로그인 후 복사
로그인 후 복사

는 ClassLoader를 가져오기 위해 claser.getClassLoader0()을 호출합니다. 보안 검사를 피할 수 있습니다.

 // Package-private to allow ClassLoader access
    native ClassLoader getClassLoader0();
로그인 후 복사
로그인 후 복사

1. ClassLoader가 무엇인가요?

우리는 일반적으로 리플렉션을 사용합니다

첫 번째 방법. 먼저 Class.forName(clssName)을 살펴보겠습니다. : 전달된 className은
클래스 의 전체 경로여야 합니다. 그렇지 않으면 오류가 보고됩니다. java.lang.ClassNotFoundException

public static Class<?> forName(String className)                
throws ClassNotFoundException {        
return forName0(className, true, ClassLoader.getCallerClassLoader());
    }
로그인 후 복사
로그인 후 복사

ClassLoaderClassLoader.getCallerClassLoader()를 로드하기 위해 forName0 메소드를 호출합니다.

    // Returns the invoker&#39;s class loader, or null if none.
    // NOTE: This must always be invoked when there is exactly one intervening
    // frame from the core libraries on the stack between this method&#39;s
    // invocation and the desired invoker.
    static ClassLoader getCallerClassLoader() {
        // NOTE use of more generic Reflection.getCallerClass()
        Class caller = Reflection.getCallerClass(3);
        // This can be null if the VM is requesting it        
        if (caller == null) {            
        return null;
        }
        // Circumvent security check since this is package-private        
        return caller.getClassLoader0();
    }
로그인 후 복사
로그인 후 복사
는 ClassLoader를 가져오기 위해 claser.getClassLoader0()을 호출합니다. 보안 검사를 피할 수 있습니다.

 // Package-private to allow ClassLoader access
    native ClassLoader getClassLoader0();
로그인 후 복사
로그인 후 복사

1. ClassLoader란 무엇인가요?

위 내용은 Java 고급 반영 내용입니다. 자세한 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요. !


관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿