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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© HeiMaYSL 中级黑马   /  2012-5-5 08:09  /  1783 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

class LanPingException extends Exception
{
        LanPingException(String message)
        {
                super(message);    //重写父类的构造方法:Exception(String message)。
        }
}
class MaoYanException extends Exception
{
        MaoYanException(String message)
        {
                super(message);    //重写父类的构造方法:Exception(String message)。
        }
}
class NoPlanException extends Exception
{
        NoPlanException(String message)
        {
                super(message);    //重写父类的构造方法:Exception(String message)。
        }
}

class Computer
{
        private int state=3;  //电脑状态:1,表正常,2,表蓝屏,3,冒烟
        public void run()throws LanPingException,MaoYanException     //这里必须声明异常
        {
                //对state进行判断后,就抛出相应的异常处理。
                if(state==2)
                        throw new LanPingException("电脑蓝屏了!");
                if(state==3)
                        throw new MaoYanException("电脑冒烟了!");

                System.out.println("电脑运行中......");
        }
        public void restart()
        {
                state=1;     //让电脑状态处于正常,再重启。
                System.out.println("此时电脑正常,电脑重启!");
        }

}

class Teacher
{
        private String name;
        private Computer computer;

        Teacher(String name)        //对老师进行初始化。
        {
                this.name=name;
                computer=new Computer();  
        }

        public void prelect()throws NoPlanException
        {
                try
                {
                        computer.run();
                }
                catch (LanPingException e)
                {
                        computer.restart();
                }
                catch (MaoYanException e)
                {
                        test();
                        throw new NoPlanException("课时无法继续"+e.message);
                }
                System.out.println("讲课");
        }

        public void test()
        {
                System.out.println("同学们练习");
        }
}


class test
{
        public static void main(String[] args)
        {
                Teacher t =new Teacher("毕老师");
                try
                {
                        t.prelect();
                }
                catch (NoPlanException e)
                {
                        System.out.println(e.toString());   //
                        System.out.println("换老师 ,或者放假。");
                }
        }
}

4 个回复

倒序浏览
把e.message 改成e.getMessage() 另外你想问的是具体是什么问题呢?
回复 使用道具 举报
你在teacher类中的prelect方法里第二个catch里抛出noplanexception时调用了e.message方法,但是e没有这个方法。应该是e.getMessage方法。
回复 使用道具 举报
在发帖的时候要考虑好问题是什么,你有没有好好思考过这个问题,另外必须先百度一下这个问题,能不能在百度解决,如果不能在发帖请教
回复 使用道具 举报
谢谢各位啊!我是在编译时,出错了。我找了老半天,没找到错误!就来请教你们了。非常感谢哈,这个小问题还是我马虎造成的。我会注意的。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马