@Override 주석은 개발자가 동일한 함수 이름을 사용하기 위해 Java에서 함수를 재정의하지만 이러한 함수에 다른 속성을 할당할 때 사용됩니다. Java의 초과 상승 기능을 알고 있지만 @override 주석을 명시적으로 작성하기 위한 필수 옵션으로 사용하고 싶지 않았기 때문에 @override 주석을 사용하지 않은 경우. Java 1.5가 도입된 이후 기본적으로 활성화됩니다. 런타임 다형성을 촉진합니다. 주석을 사용하지 않고도 모든 기능을 재정의할 수 있기 때문입니다. 그럼에도 불구하고 한 가지 큰 이점이 있습니다. 컴파일러가 우연히 재정의를 놓친 경우(예: 개발자가 재정의 함수 이름에서 철자를 실수한 경우)입니다. 주석 재정의의 도움으로 컴파일러는 기본 함수를 하위 함수로 이해하고 재정의합니다. 또한 코드 가독성이 향상되어 유지 관리 시간과 노력이 줄어듭니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
구문:
public @interface Override
컴파일러가 주석인지 아닌지를 이해할 수 있도록 키워드를 재정의하려면 앞에 "@" 기호가 있어야 합니다. 재정의 함수는 기본 클래스와 상속 클래스 모두에서 반환 유형 및 여러 매개 변수와 함께 동일한 정의를 가져야 합니다. 이들 중 어느 하나라도 차이점이 있다면 이 기능을 새로운 기능으로 이해하면서 오버라이드 기능으로 간주하지 않을 것입니다.
예:
Base class {} Child class{} Base object1= new Base();// Here Base class is instantiated so the function definition will be called from base class. Base object2= new Child(); /// Here Child class is instantiated so the function definition will be called from child class
다음은 예시입니다.
재정의 주석 작업을 보여주는 예
설명:
아래 프로그램에는 두 개의 클래스가 정의되어 있습니다. 하나는 상위 클래스 "Pclass"라고도 하는 기본 클래스이고, 다른 하나는 기본 클래스의 속성과 멤버 함수를 상속하는 클래스 ", Cclass"입니다. 상속된 클래스 또는 자식 클래스라고 합니다. 함수는 먼저 상위 클래스에서 선언됩니다. 이 예제에서는 함수 이름이 printfunction() 이며 매개변수로 전달된 문자열을 인쇄하는 작업을 담당합니다.
같은 이름의 함수가 앞에 @override 주석이 붙은 "Cclass"라는 상속 클래스에 선언되고 정의됩니다. 다른 문자열은 매개변수로 전달됩니다. 메인 클래스에서는 위에서 정의한 클래스가 객체를 생성하여 인스턴스화됩니다. "object1"은 Pclass의 개체를 식별하고 "object2"는 Cclass의 개체를 식별합니다. 이러한 서로 다른 객체를 사용하여 동일한 함수가 호출됩니다. 첫 번째 경우 object1은 상위 클래스인 Pclass에서 문자열을 가져옵니다. 나중에 object2가 호출되면 @override 주석이 실행되고 콘텐츠 문자열이 변경됩니다. 이는 이해하기 쉬운 코드와 더 나은 기능을 위해 Java에서 제공되는 재정의 기능입니다.
코드:
// This is Base class class Pclass { void printfunction() { System.out.println("This is the output of function present in parent class \"Pclass\". "); } } // This is Child class class Cclass extends Pclass { // The below function is override function along with override annotation @Override void printfunction() { System.out.println("This is the output of function present in child class \"Cclass\"."); } } // Thi is Main class from here the contro; execution starts. JAVA compiler searches for main class to start executing any code. public class Main { public static void main(String[] args) { Pclass object1 = new Pclass(); object1.printfunction(); Pclass object2 = new Cclass(); object2.printfunction(); } }
출력:
다음은 두 개의 문자열 라인이 있는 출력 화면입니다. 첫 번째 문자열 줄은 기본 함수에서 나오고, 두 번째 문자열 줄은 상속된 클래스에 정의된 재정의 함수에서 나옵니다.
Here we have one base class with two child classes inheriting it. The second inherited class is instantiated, and the output string is triggered from the 2nd inherited class.
Code:
class Pclass { void printfunction() { System.out.println("This is the output of function present in parent class \"Pclass\". "); } } // This is Child class class Cclass extends Pclass { // The below function is override function along with override annotation @Override void printfunction() { System.out.println("This is the output of function present in child class \"Cclass\"."); } } // This is Child class class Cclass2 extends Pclass { // The below function is override function along with override annotation @Override void printfunction() { System.out.println("This is the output of function present in child class number 2 \"Cclass\"."); } } // This is Main class from here the contro; execution starts. JAVA compiler searches for main class to start executing any code. public class Main { public static void main(String[] args) { Pclass object1 = new Pclass(); object1.printfunction(); Pclass object2 = new Cclass2(); object2.printfunction(); } }
Output:
Hence Java override function comes with a lot of benefits like providing run-time polymorphism, easy code access, clean code and many more. Adding override annotation assures that the compiler understands the intention of function definition via function declarations in classes. This is one of the important properties of the oops concept called polymorphism.
위 내용은 자바 @오버라이드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!