本帖最后由 张帅 于 2011-12-20 01:39 编辑
代码如下,情况如下,照着视频打的,不知道啥问题- class Person{
- void speak(){
- System.out.println("start Person");
- }
- }
- class Student extends Person{
- void speak(){
- System.out.println("start student");
- }
- }
- public class Demo{
- public static void main(String[] args){
- Student s = new Student();
- System.out.println(s.speak());
- }
- }
复制代码
|