class Demo {
int show(int a, int b) {
return 0;
}
}
// 下面哪些函数可以存在于Demo的子类中。
// A.public int show(int a,int b){return 0;}//重写
//
// B.private int show(int a,int b){return 0;}//不能,访问修饰符权限不能小于被生写的方法。
//
// C.private int show(int a,long b){return 0;}//方法重载
// D.public short show(int a,int b){return 0;}//不能 只改变反回值,参数不变,不算重载。
// E.static int show(int a,int b){return 0;}//不能 被重写的方法不是静态,所以它也不能是静态的。 |