A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 于冰 黑马帝   /  2011-12-26 16:20  /  1832 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 iceeyes992 于 2011-12-26 16:35 编辑

代码如下
abstract class Student
{
        public abstract void study();
        public void sleep()
        {
                System.out.println("sleep in night on the bed!");
        }
}
class BaseStudent extends Student
{
        public void sutdy()
        {
                System.out.println("base study!");
        }
        public void sleep()
        {
                System.out.println("sleep in day on the chair!");
        }
}
class AdvStudent extends Student
{
        public void sutdy(){
                System.out.println("adv study!");
        }
        public void sleep()
        {
                System.out.println("sleep in day on the chair in classroom!");
        }
}
class DoStudent
{
        public void dosomething(Student stu)
        {
                stu.study();
                stu.sleep();
        }
}

public class StudentTest
{
        public static void main(String[] args)
        {
                //BaseStudent bs = new BaseStudent();
                //bs.study();
                //bs.sleep();
                //AdvStudent as = new AdvStudent();
                //as.study();
                //as.sleep();
                DoStudent ds = new DoStudent();
                ds.dosomething(new BaseStudent());
                ds.dosomething(new AdvStudent());
        }
}
编译提示BaseStudent和AdvStudent is not abstract and does not override abstract method study() in Student
为什么呢?怎么解决? 谢谢啦!

评分

参与人数 1技术分 +1 收起 理由
吴上储 + 1

查看全部评分

4 个回复

倒序浏览
public void sutdy()是不是拼写错误了~~?

评分

参与人数 1技术分 +1 收起 理由
吴上储 + 1

查看全部评分

回复 使用道具 举报
于冰 黑马帝 2011-12-26 16:34:19
藤椅
晕死过去~~~
谢谢楼上滴~~
回复 使用道具 举报
于冰 黑马帝 2011-12-26 16:34:57
板凳
本帖最后由 iceeyes992 于 2011-12-26 16:36 编辑

已经解决 谢谢啦
回复 使用道具 举报
编辑你的帖子,在主题  前面选择  主题分类~~~
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马