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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 石欣欣 黑马帝   /  2011-9-19 17:14  /  1672 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

class Demo
{
        int div(int a,int b)
        {
                return a/b;
        }
}

class ExceptionDemo
{
        public static void main(String[] args)
        {
                Demo d=new Demo();
                try
                {
                        int x=d.div(8,0);
                        System.out.println("x="+x);
                }

                catch (ArithmeticException e)

                {
                        System.out.println("完毕.");
                }

                catch (Exception e)

                {
                        System.out.println("处理完毕.");
                }
               



               

                System.out.println("程序结束。");
        }


}

3 个回复

倒序浏览
黑马网友  发表于 2011-9-20 07:37:09
沙发
package test;
//主要是你这里起的类名java框架内部的某个类名一样,造成的冲突,你换个名字就ok了
class [color=Red]Demo1 [/color]{
        int div(int a, int b) {
                return a / b;
        }
}

public class ExceptionDemo {
        public static void main(String[] args) {
                [color=Red][/color]Demo1 d = new Demo1();
                try {
                        int x = d.div(8, 0);
                        System.out.println("x=" + x);
                }

                catch (ArithmeticException e)

                {
                        System.out.println("完毕.");
                }

                catch (Exception e)

                {
                        System.out.println("处理完毕.");
                }

                System.out.println("程序结束。");
        }

}
回复 使用道具 举报
黑马网友  发表于 2011-9-20 07:56:58
藤椅
除数不能等于0,换个除数就没异常了!
回复 使用道具 举报
黑马网友  发表于 2011-9-20 08:43:08
板凳

回复 楼主 的帖子

请问你要问什么问题??
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马