方法覆盖的语法要求是什么
3 回答
温温酱
TA贡献1752条经验 获得超4个赞
public class father{
public a() {
System.out.println("father");
}
}
public class son extends father{
public a() {
System.out.println("son");
}
}
添加回答
举报
0/150
提交
取消