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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

本帖最后由 luguoyuanf 于 2013-3-31 21:06 编辑

class Demo
{        
        public static void func()
        {
                try
                {
                        throw  new Exception();
                                                
                                                
                }
                finally
                {
                        System.out.println("B");
                }
        }
        public static void main(String[] args)
        {
                try
                {
                        func();
                        System.out.println("A");
                }
                catch(Exception e)
                {
                        System.out.println("C");
                }
                System.out.println("D");
        }
}

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

8 个回复

倒序浏览
class Demo
{        
        public static void func() throws Exception//因为你程序没有处理掉这个异常,所以你还得往外抛
        {
                try
                {
                        throw  new Exception();
                                                
                                                
                }
                finally
                {
                        System.out.println("B");
                }
        }
        public static void main(String[] args)
        {
                try
                {
                        func();
                        System.out.println("A");
                }
                catch(Exception e)
                {
                        System.out.println("C");
                }
                System.out.println("D");
        }
}

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

回复 使用道具 举报
楼主你在func()方法没有进行抛
  1. package com.ctj.www;

  2. public class Democ {
  3.         public static void func()throws Exception{
  4.                 try{
  5.                         throw new Exception();
  6.                 }
  7.                 finally{
  8.                         System.out.println("B");
  9.                 }
  10.         }
  11.         public static void main(String[] args) {
  12.                 try{
  13.                         func();
  14.                         System.out.println("A");
  15.                 }
  16.                 catch(Exception e){
  17.                         System.out.println("C");
  18.                 }
  19.                 System.out.println("D");
  20.         }
  21. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

回复 使用道具 举报
修改后的代码:
class Demo
{        
        public static void func() throws Exception
        {
                try
                {
                        throw  new Exception();            
                }
                finally
                {
                        System.out.println("B");
                }
        }
        public static void main(String[] args)
        {
                try
                {
                        func();
                        System.out.println("A");
                }
                catch(Exception e)
                {
                        System.out.println("C");
                }
                System.out.println("D");
        }
}
分析:当主函数运行func()时,此函数边抛出一个异常Exception,因此就必须在函数上对其进行声明。此时编译通过。
进入finally块输出B,同时主函数中的catch块捕捉到这个异常,并处理输出C,接着输出D;
于是结果是:
B
C
D

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

回复 使用道具 举报
class Demo
{      
        public static void func() throws Exception()      //在此处 声明
        {
                try
                {
                        throw  new Exception();      //此处的异常没有捕捉就需要在函数上进行声明
                                               
                                               
                }
                finally
                {
                        System.out.println("B");
                }
        }

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

回复 使用道具 举报
本帖最后由 袁梦希 于 2013-3-30 22:59 编辑
  1. class Test9
  2. {
  3. public static void func()
  4. {
  5. try
  6. {
  7. try {
  8. throw new Exception();
  9. catch (Exception e) {

  10. e.printStackTrace();
  11. }

  12. }
  13. finally
  14. {
  15. System.out.println("B");
  16. }
  17. }
  18. public static void main(String[] args)
  19. {
  20. try
  21. {
  22. func();
  23. System.out.println("A");
  24. }
  25. catch(Exception e)
  26. {
  27. System.out.println("C");
  28. }
  29. System.out.println("D");
  30. }


  31. }
复制代码
如果你把异常捕获掉 ,那么抛出的肯定是异常  且输出的是   B   A    D
  1. class Test9
  2. {
  3. public static void func()   throws Exception
  4. {
  5. try
  6. {

  7. throw new Exception();


  8. }
  9. finally
  10. {
  11. System.out.println("B");
  12. }
  13. }
  14. public static void main(String[] args)
  15. {
  16. try
  17. {
  18. func();
  19. System.out.println("A");
  20. }
  21. catch(Exception e)
  22. {
  23. System.out.println("C");
  24. }
  25. System.out.println("D");
  26. }


复制代码
如果您把异常抛出就没事了   因为异常类中抛出了异常 所以创建异常对象的时候必须抛出异常或者捕获    且输出的是 B  C  D

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

回复 使用道具 举报
  1. package A;
  2. class Demo
  3. {        
  4.         public static void func() throws Exception    //在这里抛出一下就可以了
  5.         {
  6.                 try
  7.                 {
  8.                   throw  new Exception();  //在没有修改之前  这里提示错误  未处理的异常类型Exception
  9.                                                 
  10.                                                 
  11.                 }
  12.                 finally
  13.                 {
  14.                         System.out.println("B");
  15.                 }
  16.         }
  17.         public static void main(String[] args)
  18.         {
  19.                 try
  20.                 {
  21.                         func();
  22.                         System.out.println("A");
  23.                 }
  24.                 catch(Exception e)
  25.                 {
  26.                         System.out.println("C");
  27.                 }
  28.                 System.out.println("D");
  29.         }
  30. }
复制代码
func中的try块抛出了异常throw  new Exception();   抛出异常却没有处理异常,所以在编译的时候出错。

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

回复 使用道具 举报
胡帅冰 发表于 2013-3-30 22:59
func中的try块抛出了异常throw  new Exception();   抛出异常却没有处理异常,所以在编译的时候出错。 ...



class Demo
{        
        public static void func() throws Exception
        {
                try
                {
                        throw  new Exception();
                                                
                                                
                }
                finally
                {
                        System.out.println("B");
                }
        }
        public static void main(String[] args)
        {
                try
                {
                        func();
                        System.out.println("A");
                }
                catch(Exception e)
                {
                        System.out.println("C");
                }
                System.out.println("D");
        }
}

你上面的try抛出了一个异常,你是准备把这个异常抛给谁那?没有表示出抛给谁,怎么去处理那?
回复 使用道具 举报
class MyDemo
{        
        public static void func()//throws Exception 方法一:方法中如果抛出了一个异常,而且是编译时异常,方法上必须声明。
        {
                try  {
                        throw  new Exception();  // throw new RuntimeException     方法二:如果方法上不声明的话,可以在此抛一个运行时异常。                                                      
                }
                finally{
                        System.out.println("B");
                }
        }
        public static void main(String[] args){
                try{
                        func();
                        System.out.println("A");
                }
                catch(Exception e) {
                        System.out.println("C");
                }
                System.out.println("D");
        }
}

两种方式都可以,希望对你有帮助。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马