如何在Java中处理StackOverflowError?

如何在Java中处理StackOverflowError?,第1张

如何在Java中处理StackOverflowError?

我不确定“句柄”是什么意思。

您当然可以捕获该错误:

public class Example {    public static void endless() {        endless();    }    public static void main(String args[]) {        try { endless();        } catch(StackOverflowError t) { // more general: catch(Error t) // anything: catch(Throwable t) System.out.println("Caught "+t); t.printStackTrace();        }        System.out.println("After the error...");    }}

但这很可能是个坏主意,除非您确切地知道自己在做什么。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5488285.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存