이 게시물은 static의 맥락에서 메서드 오버로딩 및 메서드 재정의 개념에 초점을 맞춰 static 키워드에 대한 이전 논의를 확장합니다. 행동 양식. 또한 this 및 super 키워드가 정적 컨텍스트에서 어떻게 작동하는지(또는 작동하지 않는지) 살펴보겠습니다.
정적 키워드를 처음 사용하는 경우 먼저 정적 변수와 정적 메서드를 살펴보는 것이 도움이 될 수 있습니다.
이 게시물은 정적 컨텍스트에서 this 및 super의 동작을 다루므로 This 키워드 및 Super 키워드도 살펴보는 것이 좋습니다.
정적 메소드의 오버로딩
정적 메소드가 재정의될 수 없는 이유
정적 컨텍스트에서 this 및 super 키워드 사용
핵심 개념을 보여주는 예시
Java에서는 오버로딩을 통해 동일한 이름의 메소드가 다른 매개변수 목록과 함께 존재할 수 있습니다. 정적 메서드는 인스턴스 메서드와 마찬가지로 오버로드될 수 있습니다. 그러나 컴파일 시간에 오버로드가 발생한다는 점을 명심하세요.
package keywords.static_keyword; public class StaticVariables { static int idStatic = 1; public StaticVariables(String name) { this.id = ++idStatic; this.name = name; } int id; String name; static void displayText() { System.out.println("DisplayText called. ID: " + idStatic); } // Overloaded static method with a parameter static void displayText(String name) { System.out.println("Overloaded DisplayText called. Name: " + name); } public static void main(String[] args) { StaticVariables.displayText(); StaticVariables.displayText("Static Overload Example"); } }
메서드 오버로딩: displayText 메소드는 매개 변수가 없는 버전과 문자열 매개 변수가 있는 두 가지 버전으로 오버로드됩니다.
Java는 컴파일 시간 동안 매개변수 목록을 기반으로 두 메소드를 구별할 수 있으므로 이는 합법입니다.
Java에서는 정적 메서드 재정의를 허용하지 않습니다. 정적 메서드는 객체 인스턴스가 아닌 클래스에 바인딩되므로 메서드 재정의의 기본인 런타임 다형성에 참여하지 않습니다.
그러나 정적 변수는 상속되며 하위 클래스에서 액세스하거나 수정할 수 있습니다.
package keywords.static_keyword; public class StaticVariables { static int idStatic = 1; public StaticVariables(String name) { this.id = ++idStatic; this.name = name; } int id; String name; static void displayText() { System.out.println("DisplayText called. ID: " + idStatic); } // Overloaded static method with a parameter static void displayText(String name) { System.out.println("Overloaded DisplayText called. Name: " + name); } public static void main(String[] args) { StaticVariables.displayText(); StaticVariables.displayText("Static Overload Example"); } }
package keywords.static_keyword; public class CannotOverrideStaticMethod extends StaticVariables { public CannotOverrideStaticMethod(String name) { super(name); } // Attempting to override the static method // This will cause a compile-time error /* @Override static void displayText() { System.out.println("Overridden DisplayText"); } */ @Override void display() { // Static variables are inherited from the parent class idStatic = 90; // Access and modify the parent's static variable System.out.println("ID: " + idStatic + ", Name: " + name); super.display(); // Call the parent class's non-static method } // Correct way to use static methods from the parent class static void displayText() { StaticVariables.displayText(); // Call the parent class static method } public static void main(String[] args) { displayText(); // Calls the static method defined in this class } }
static void displayText() { // Cannot use 'this' in a static context this.display(); // --> Compile-time error }
이 게시물에서는 정적 메서드 오버로딩 및 재정의의 미묘한 차이를 다루었고 정적 컨텍스트에서 this와 super를 사용할 때의 제약 조건에 대해 논의했으며 정적 변수가 상속 전반에서 어떻게 작동하는지 설명했습니다. 이러한 개념은 정적 멤버가 Java의 인스턴스 멤버와 어떻게 다른지 이해하는 데 필수적입니다.
Java 기초
어레이 인터뷰 필수
Java 메모리 필수
컬렉션 프레임워크 필수
즐거운 코딩하세요!
위 내용은 정적 키워드: 오버로딩, 오버라이딩, this 및 super의 역할의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!