- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
但是,如果父类(super class)有一个抽象方法,并且该方法在其具体的子类中实现,我们仍然可以使用父类(super class)的对象来调用该方法的子类实现。
怎么会这样?
与重载方法相同,即使您使用父类(super class)的引用调用子类的实现,也会调用它。
让我更具体地说...
假设 Animal 是父类(super class),Dog 是子类。现在,我这样做:
Animal a = new Dog();
这意味着 a 是对动物类的引用,对吧?
现在,如果我这样做,a.function(); (假设该函数在 Animal 中定义并在 Dog 中重写),Animal 的版本应该被调用,因为 a 是对动物的引用,但事实恰恰相反。
最佳答案
这意味着父类(super class)无法调用子类中定义的方法,因为父类(super class)不知道它们。对于抽象方法,父类(super class)知道它们,因此可以调用它们。非抽象和非 final方法也会发生这种情况:子类可以修改它们,而不会注意到父类(super class),并且父类(super class)仍然可以正常工作。
您所描述的是编译时和执行时(也称为运行时)之间的差异。在编译时,变量只能调用在声明变量的类型上定义的方法,例如Animal Animal
则 animal
变量只能调用 Animal
类中定义的方法。在执行时,方法的执行将由属于对象引用实例的类处理,例如Animal Animal = new Dog();
那么 animal
行为将由 Dog
类中声明的行为定义。
示例:
public class Animal {
abstract void breath();
}
public class Dog extends Animal {
@Override
public void breath() {
System.out.println("Dog breathing");
}
public void bark() {
System.out.println("woof!");
}
}
public class Client {
public static void main(String[] args) {
//animal variable is of type Animal
//and initialized as a Dog object reference
Animal animal = new Dog();
//dog variable is of type Dog (also an Animal)
//and initialized as a Dog object reference
Dog dog = new Dog();
animal.breath();
dog.breath();
//line below throws a compiler exception
//since animal is declared as type Animal
//not all Animals know how to bark
animal.bark();
//line below compiles fine
//since dog is declared as type Dog
//and Dog's know how to bark
dog.bark();
}
}
关于java - 父类(super class)引用不应该能够调用其子类独有的方法,但是,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28800156/
我正在使用 Java 编写一个时钟程序,该程序能够“滴答作响”,但它存在问题。我认为它与 getter 和 setter 或 toString() 方法有关。 计数器类 package clock;
const Index = () => { // Ref Links const frefLinks = { 1: useRef(1), 2: useRef(2), 3: useRef(3
所以我读了here不能 pickle 装饰函数。确实: import multiprocessing as mp def deco(f): def wrapper(*args, **kwarg
我在go1.11.2 linux/amd64 版本。当包godog使用 go get github.com/DATA-DOG/godog/ 安装,godog 可执行文件在 $GOPATH/bin/中创
如何正确压缩字符串,以便 PHP 能够解压缩? 我试过这个: public static byte[] compress(String string) throws IOException {
我们这里的问题是表明 在测试中使用 Kleene 代数。 在 b 的值由 p 保留的情况下,我们有交换条件 bp = pb;两个程序之间的等价性简化为等式 在 b 的值不被 p 保留的情况下,我们有交
我有一个与我的网络相关的非常奇怪的问题,我在具有多个接口(interface)的 VirtualBox 上安装了 RDO Grizzly OpenStack。 虚拟盒子: eth0 - managem
我正在尝试使用 Passport.js授权谷歌OAuth2在 Node.js .我整个星期都在尝试让它工作,但不知道为什么它不工作,所以现在我求助于 stack 寻求一些潜在的帮助。我已经尝试了所有在
我是一名优秀的程序员,十分优秀!