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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 胡威 黑马帝   /  2011-11-26 20:59  /  2369 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

class FuShuException extends Exception
{
        private int value;
        FuShuException(String msg,int value)
        {
                super(msg);
                this.value=value;
        }
        public int getValue()
        {
                return value;
        }
}
class Demo
{
        public int div(int x,int y)throws FuShuException
        {
                if(y<0)
                        throw new FuShuException("除数是负数后面",y);
                return x/y;
        }
}
class ExceptionDemo3
{
        public static void main(String[] args)
        {
                Demo d=new Demo();
                try
                {
                        int x=d.div(5,-3);
                        System.out.println("x="+x);
                }
                catch (FuShuException e)
                {
                        System.out.println(e.toString());
                        System.out.println("该负数是"+e.getValue());
                }
                System.out.println("over");       
        }
}
编译出错:16行 public int div(int x,int y)throws FuShuException 不兼容的类型
需要:Throwable
找到:FuShuException
问:出错在哪里啦

3 个回复

倒序浏览
。。。。没错啊。。。你没有public修饰符不能运行?
回复 使用道具 举报
我没找到问题
回复 使用道具 举报
至少有个public 的class啊
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马