如何处理运行时异常?
这个例子显示了如何在Java程序中处理运行时异常。
public class NeverCaught { static void f() { throw new RuntimeException("From f()"); } static void g() { f(); } public static void main(String[] args) { g(); } }
上面的代码示例将产生以下结果。
From f()