在控制台应用程序中处理全局异常时,可以通过以下步骤进行:
public class Program {
public static void main(String[] args) {
try {
// 可能会抛出异常的代码
AnotherClass.anotherMethod();
} catch (Exception e) {
// 异常处理逻辑
System.out.println("发生异常:" + e.getMessage());
}
}
}
class AnotherClass {
public static void anotherMethod() throws Exception {
// 可能会抛出异常的代码
throw new Exception("异常信息");
}
}
在上述示例中,当调用AnotherClass类的anotherMethod方法时,如果发生异常,异常会被捕获并在控制台输出异常信息。
腾讯云产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云