다른 바인딩 비교
1. 정적 바인딩은 컴파일 중에 발생하고 동적 바인딩은 런타임 중에 발생합니다.
2. 동적 바인딩은 정적 바인딩보다 유연합니다. 정적 바인딩은 컴파일 프로세스 중에 결정되는 반면 동적 바인딩은 컴파일 프로세스 중에 어떤 메서드를 호출할지 모르기 때문입니다.
3. 정적 바인딩은 직접 호출할 수 있지만 동적 바인딩은 메서드 테이블을 검색해야 하기 때문에 동적 바인딩보다 메서드를 더 빠르게 호출합니다.
Instance
정적 바인딩
class Super{ public static void sample(){ System.out.println("This is the method of super class"); } } Public class Sub extends Super{ Public static void sample(){ System.out.println("This is the method of sub class"); } Public static void main(String args[]){ Sub.sample() } }
(2) 동적 바인딩
class Super{ public void sample(){ System.out.println("This is the method of super class"); } } Public class extends Super{ Public static void sample(){ System.out.println("This is the method of sub class"); } Public static void main(String args[]){ new Sub().sample() } }
위 내용은 Java의 정적 바인딩과 동적 바인딩 예제 비교 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!