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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 刘前龙 中级黑马   /  2015-9-2 22:14  /  251 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

自定义异常,老师给出示例如和运行结果如下
class FuShuException extends Exception //getMessage();
{
        private String msg;
        private int value;

        FuShuException(String msg,int value)
    {
                this.msg=msg;
                this.value=value;
        }
        public String getMessage(String msg , int value)
        {
                return msg;
                return value;  第36行
        }

}


class Demo
{
        int div(int a,int b)throws FuShuException
        {
                if(b<0)
                        throw new FuShuException("出现了除数是负数的情况------ / by fushu",b);//为构造函数功能
               
                //手动通过throw关键字抛出一个自定义异常对象。

                return a/b;
        }
}


class  ExceptionDemo3
{
        public static void main(String[] args)
        {
                Demo d = new Demo();
                try
                {
                        int x = d.div(4,-9);
                        System.out.println("x="+x);               
                }
                catch (FuShuException e)
                {
                        System.out.println(e.toString());
                        //System.out.println("除数出现负数了");
                        System.out.println(e.getMessage());
                }
               
                System.out.println("over");

        }
}


编译提示
ExceptionDemo3.java:36: 错误: 不兼容的类型: int无法转换为String
                return value;

为什么会提示专型失败,需要转型么?

1 个回复

倒序浏览
有遇同样问题的同学么,望赐教
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马