1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > 抛出java类型异常的方法_Java Streams:抛出异常的优雅方法

抛出java类型异常的方法_Java Streams:抛出异常的优雅方法

时间:2019-08-09 03:04:12

相关推荐

抛出java类型异常的方法_Java Streams:抛出异常的优雅方法

我在许多变体中看到的一种非常常见的方法是编写自己的功能接口,该功能接口将引发抛出已检查的异常(1),并使该解决方案适应内置接口(2).

/**

* An EPredicate is a Predicate that allows a checked exception to be thrown.

*

* @param the type of the input to the predicate

* @param the allowed exception

*/

@FunctionalInterface

public interface EPredicate {

/**

* (1) the method permits a checked exception

*/

boolean test(T t) throws E;

/**

* (2) the method adapts an EPredicate to a Predicate.

*/

static Predicate unwrap(EPredicate predicate) {

return t -> {

try {

return predicate.test(t);

} catch (Exception e) {

return false;

}

};

}

}

一个例子看起来很优雅:

.stream()

.filter(EPredicate.unwrap(item -> validator.[...].isOwner()))

哪里,

> ItemType是项目的类型;

>异常是EspaiDocFault和DataAccessException的共同父代.

.stream()

.filter(EPredicate.unwrap(item -> validator.[...].isOwner()))

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。