gpt4 book ai didi

java - 有没有更好的(java8?)方法来收集异常的 "cause stack"?

转载 作者:行者123 更新时间:2023-12-03 20:29:29 24 4
gpt4 key购买 nike

我们有一个 BaseException extends Exception在我们的项目中,基本上我们所有的其他异常都来自这个类。我想更改一些在运行时处理“原因堆栈”的方法。

作为起点,我编写了以下方法:

class BaseException extends Exception {
...

/**
* Helper: creates a list containing the complete "cause stack" of this exception.
* Please note: the exception on which this method is called is part of result!
*
* @return a {@link List} of all "causes" of this exception
*/
List<Throwable> getAllCauses() {
Throwable cause = this;
List<Throwable> causes = new ArrayList<>();
while (cause != null) {
causes.add(cause);
cause = cause.getCause();
}
return causes;
}

这完成了工作,尽管它并不完美(名称不是很好,并且也违反了单层抽象)。

但仍然:是否有一种“更优雅”的方式来收集这个结果?特别是考虑到直接返回 Stream<Throwable> 会很有帮助的事实。 .

(我主要想知道是否有一个 java8 lambda/idiom 可以在这里提供帮助)

最佳答案

This文章应该有帮助。特别是,

Stream<Throwable> causes(Throwable t){
if (t == null) return Stream.empty();
return Stream.concat(Stream.of(t), causes(t.getCause()));
}

关于java - 有没有更好的(java8?)方法来收集异常的 "cause stack"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45847021/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com