我是 Android Studio 的新手,我想知道 Android Studio 中 @Override 语句的用途.
I am completely new to Android Studio and I want to know the purpose of the @Override statement in Android Studio.
@Override 是一个 Java 注释.它告诉编译器以下方法 覆盖 其 超类.例如,假设您实现了一个 Person 类.
@Override is a Java annotation. It tells the compiler that the following method overrides a method of its superclass. For instance, say you implement a Person class.
public class Person {
public final String firstName;
public final String lastName;
//some methods
@Override public boolean equals(Object other) {
...
}
}
person 类有一个 equals() 方法.equals 方法已经在 Person 的超类 Object.因此,上面的 equals() 实现是对 Persons 的 equals() 的重新定义.也就是说,Person 覆盖了 equals().
The person class has an equals() method. The equals method is already defined in Person's superclass Object. Therefore the above implementation of equals() is a redefinition of equals() for Persons. That is to say, Person overrides equals().
在没有显式注释的情况下覆盖方法是合法的.那么@Override 注释有什么用呢?如果您不小心尝试以这种方式覆盖 equals() 怎么办:
It is legal to override methods without explicitly annotating it. So what is the @Override annotation good for? What if you accidentally tried to override equals() that way:
public boolean equals(Person other) {
...
}
上述案例有一个错误.你打算覆盖 equals() 但你没有.为什么?因为真正的 equals() 将 Object 作为参数,而您的 equals() 将 Person 作为参数.编译器不会告诉你这个错误,因为编译器不知道你想要覆盖.据编译器所知,您实际上的意思是 重载 equals().但是,如果您尝试使用 @Override 注释覆盖等于:
The above case has a bug. You meant to override equals() but you didn't. Why? because the real equals() gets an Object as a parameter and your equals() gets a Person as a parameter. The compiler is not going to tell you about the bug because the compiler doesn't know you wanted to override. As far as the compiler can tell, you actually meant to overload equals(). But if you tried to override equals using the @Override annotation:
@Override public boolean equals(Person other) {
...
}
现在编译器知道你有一个错误.你想覆盖但你没有.所以使用@Override注解的原因是显式声明方法覆盖.
Now the compiler knows that you have an error. You wanted to override but you didn't. So the reason to use the @Override annotation is to explicitly declare method overriding.
这篇关于Android Studio 中@override 的含义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何检测 32 位 int 上的整数溢出?How can I detect integer overflow on 32 bits int?(如何检测 32 位 int 上的整数溢出?)
return 语句之前的局部变量,这有关系吗?Local variables before return statements, does it matter?(return 语句之前的局部变量,这有关系吗?)
如何将整数转换为整数?How to convert Integer to int?(如何将整数转换为整数?)
如何在给定范围内创建一个随机打乱数字的 intHow do I create an int array with randomly shuffled numbers in a given range(如何在给定范围内创建一个随机打乱数字的 int 数组)
java的行为不一致==Inconsistent behavior on java#39;s ==(java的行为不一致==)
为什么 Java 能够将 0xff000000 存储为 int?Why is Java able to store 0xff000000 as an int?(为什么 Java 能够将 0xff000000 存储为 int?)