@Override 注解用于当开发人员重写 Java 中的函数以使用相同的函数名称但为这些函数分配不同的属性时。如果您知道 Java 中的过度函数,但尚未使用 @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(),它负责打印作为参数传递的字符串。
在名为“Cclass”的继承类中声明和定义同名函数,并在其前面带有 @override 注解。其他字符串作为参数传递给它。在主类中,上面定义的类通过创建它们的对象来实例化。 “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.
以上是Java @Override的详细内容。更多信息请关注PHP中文网其他相关文章!