TestException

public class TestException {
    public static void main(String[] args) {
        try {
            System.out.println(sum(new int[] {1, 2, 3, 4, 5}));
        }
        catch(Exception ex) {
            ex.printStackTrace();
            System.out.println("\n" + ex.getMessage());
            System.out.println(ex.toString());
           
            StackTraceElement[] element = ex.getStackTrace();
            System.out.println("Trace Info Obtained from getStackTrace");
            for(int i = 0; i < element.length; i++) {
                System.out.print("Method " + element[i].getMethodName());
                System.out.print(" (" + element[i].getClassName() + ": ");
                System.out.println(element[i].getLineNumber() + ")");
            }
        }
    }
   
    private static int sum(int[] list) {
        int result = 0;
        for(int i = 0; i <=list.length; i++)
            result += list[i];
        return result;
    }
}






java.lang.ArrayIndexOutOfBoundsException: 5
    at TestException.sum(TestException.java:24)
    at TestException.main(TestException.java:4)

5
java.lang.ArrayIndexOutOfBoundsException: 5
Trace Info Obtained from getStackTrace
Method sum (TestException: 24)
Method main (TestException: 4)



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
根据C++的异常处理机制,当一个异常被抛出时,程序会在当前的try-catch块中查找能够处理该异常的catch块。如果找到了对应的catch块,则执行该catch块中的代码,并结束异常处理过程。如果在当前的try-catch块中没有找到能够处理该异常的catch块,则该异常会被传递给上一层的try-catch块继续处理。 在某些情况下,我们希望在异常处理过程中重新抛出异常,使得异常能够被更高层次的异常处理机制处理。这种情况下,我们可以使用rethrow机制,即在catch块中使用throw语句重新抛出异常。 下面是一个示例程序,演示了rethrow机制的使用。程序定义了一个TestException类,它是从runtime_error类派生而来的。程序还定义了一个函数g(),其中在try语句块中抛出TestException异常,在可以处理任何类型异常的catch语句块部分打印并重新抛出异常。在main函数中的try语句块部分调用g()函数,并在catch语句块中打印。 ```c++ #include <iostream> #include <stdexcept> using namespace std; class TestException : public runtime_error { public: TestException(const string& message) : runtime_error(message) {} }; void g() { try { throw TestException("Test exception"); } catch (const exception& e) { cerr << "Caught exception: " << e.what() << endl; throw; // re-throw the same exception } } int main() { try { g(); } catch (const exception& e) { cerr << "Caught exception: " << e.what() << endl; } return 0; } ``` 运行上述程序,可以看到程序先在g()函数中抛出TestException异常,然后在catch块中重新抛出该异常。该异常被传递给调用g()函数的地方,最终在main函数的catch块中被捕获并处理。程序输出捕获的异常信息,然后终止。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值