如果我在父类中有重载方法,子类是否重载或覆盖此特定方法?
答案 0 :(得分:2)
重载和覆盖不是互斥的。
class Parent {
void foo() {}
void foo(int a) {}
void bar() {}
}
class Child extends Parent {
void foo() {} // overriding and overloading
void foo(double b) {} // overloading
void bar() {} // overriding
}
答案 1 :(得分:0)
实际上两者都是因为: