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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

孙树勋

初级黑马

  • 黑马币:4

  • 帖子:10

  • 精华:0

© 孙树勋 初级黑马   /  2012-8-20 10:28  /  1762 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

/*
需求:毕老师用电脑上课

开始思考上课中出现的问题。

比如问题是:
        电脑蓝屏。
        电脑冒烟。
要对问题进行描述,封装成对象。


可是当冒烟发生后,出现讲课进度无法继续。

出现了讲师的问题。课时计划无法完成。


*/
//蓝屏发生以后能处理,就要标示出去
class LanPingException extends Exception
{
        LanPingException(String message)
        {
                super(message);
        }
}
//冒烟异常
class MaoYanException extends Exception
{
        MaoYanException(String message)
        {
                super(message);
        }
}
//无法完成计划异常
class NoPlanException extends Exception
{
        NoPlanException(String msg)
        {
                super(message);
        }
}

class Computer
{
        private int state = 1;//1代表正常运行
        public void run()throws LanPingException,MaoYanException
        {
                if(state==2)
                {
                        throw new LanPingException("蓝屏了!");
                }
                if(state==3)
                {
                        throw new MaoYanException("冒烟了!");
                }
                System.out.println("电脑运行");
        }
        public void reset()
        {
                state = 1;
                System.out.println("电脑重启");
        }
}

class Teacher
{
        private String name;
        private Computer cmpt;
        Teacher(String name)
        {
                this.name = name;
                cmpt = new Computer();
        }

        public void prelect()throw NoPlanException
        {
                try
                {
                        cmpt.run();
                }
                catch (LanPingException e)
                {
                        //重启就将状态恢复到1了
                        cmpt.reset();
                       
                }
                catch (MaoYanException e)
                {
                        test();
                        throw new NoPlanException("课时无法继续"+e.message());
                        //test();写到throw上面即可.提示无法访问,一遇到问题就抛出去了,throw单独出现的时候下面别写语句。因为它就是函数结束标示了。
                        //return 也是如此
                }

                System.out.println("讲课");
        }
        public void test()
        {
                System.out.println("练习");
        }
}


class  ExceptionTest
{
        public static void main(String[] args)
        {
                //System.out.println("Hello World!");
       
                Teacher t = new Teacher("毕老师");
                try
                {
                        t.prelect();
                }
                catch (NoPlanException e)
                {
                        System.out.println(e.toString());//输出电脑冒烟了
                        System.out.println("换老师或者放假");
                }
               
        }
}
为什么会报下面的错误呢?没找出原因在哪,求解答.....


评分

参与人数 1技术分 +1 收起 理由
张_涛 + 1 赞一个!

查看全部评分

4 个回复

倒序浏览
视频一定要看仔细了。。。
方法上声明异常要用throws!!!!
class NoPlanException extends Exception
{
        NoPlanException(String msg)
        {
                super(message);//应该是super(msg);
        }
}

throw new NoPlanException("课时无法继续"+e.message());//应该是throw new NoPlanException("课时无法继续"+e.getMessage());
看视频一定要仔细啊少年,全都是小错误。。。

评分

参与人数 1技术分 +1 收起 理由
张_涛 + 1 少yan,赞一个!

查看全部评分

回复 使用道具 举报

class LanPingException extends Exception
{
        LanPingException(String message)
        {
                super(message);
        }
}

class MaoYanException extends Exception
{
        MaoYanException(String message)
        {
                super(message);
        }
}

class NoPlanException extends Exception
{
        NoPlanException(String message)//楼主最开始写的是NoPlanException(String msg)  和super(message)里面参数都不一样 报错
                //希望以后楼主可以自己根据提示找出错误所在
        {
                super(message);
        }
}

class Computer
{
        private int state = 1;
        public void run()throws LanPingException,MaoYanException
        {
                if(state==2)
                {
                        throw new LanPingException("蓝屏了!");
                }
                if(state==3)
                {
                        throw new MaoYanException("冒烟了!");
                }
                System.out.println("电脑运行");
        }
        public void reset()
        {
                state = 1;
                System.out.println("电脑重启");
        }
}

class Teacher
{
        private String name;
        private Computer cmpt;
        Teacher(String name)
        {
                this.name = name;
                cmpt = new Computer();
        }

        public void prelect()throws NoPlanException//在方法上应用throws对异常进行抛的处理 方法内才用throw  应该是楼主的手误问题
        {
                try
                {
                        cmpt.run();
                }
                catch (LanPingException e)
                {
                        cmpt.reset();
                        
                }
                catch (MaoYanException e)
                {
                        test();
                        throw new NoPlanException("课时无法继续"+e.getMessage());//返回异常的详细消息字符串应该才用getMassage的方法,方法错误
                        
                }

                System.out.println("讲课");
        }
        public void test()
        {
                System.out.println("练习");
        }
}


class  ExceptionTest
{
        public static void main(String[] args)
        {
                //System.out.println("Hello World!");
        
                Teacher t = new Teacher("毕老师");
                try
                {
                        t.prelect();
                }
                catch (NoPlanException e)
                {
                        System.out.println(e.toString());//输出电脑冒烟了
                        System.out.println("换老师或者放假");
                }
               
        }
}

评分

参与人数 1技术分 +1 收起 理由
张_涛 + 1 赞一个!

查看全部评分

回复 使用道具 举报
问题已解决!谢谢  会注意的!太粗心了........
回复 使用道具 举报
函数末尾的抛异常不能用  throw     应该用    throws         你再试试
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马