1

当我编译下面的代码时,我收到以下错误:

/home/prakashs/composite_indexes/src/main/java/com/spakai/composite/TwoKeyLookup.java:22: error: unreported exception NoMatchException; must be caught or declared to be thrown
        CompletableFuture<Set<V>> result = calling.thenCombine(called, (s1, s2) -> findCommonMatch(s1, s2));

编码:

 public CompletableFuture<Set<V>> lookup(K callingNumber, K calledNumber) throws NoMatchException {
        CompletableFuture<Set<V>> calling = callingNumberIndex.exactMatch(callingNumber);
        CompletableFuture<Set<V>> called = calledNumberIndex.exactMatch(calledNumber);
        CompletableFuture<Set<V>> result = calling.thenCombine(called, (s1, s2) -> findCommonMatch(s1, s2));
        return result;
    }

    public Set<V> findCommonMatch(Set<V> s1, Set<V> s2) throws NoMatchException {
        Set<V> intersection = new HashSet<V>(s1);
        intersection.retainAll(s2);

        if (intersection.isEmpty()) {
          throw new NoMatchException("No match found");
        }

        return intersection;
    }

我已经宣布它被抛出。我错过了什么?

完整代码在https://github.com/spakai/composite_indexes

4

1 回答 1

4

Checked Exceptions 比 Java promises 更古老,并且在 Java 8 中不能很好地使用它们。从技术上讲,BiFunction没有声明抛出任何已检查异常。因此,findCommonMatch您传递给thenCombine的 也不能扔掉它们。

NoMatchException通过继承来取消RuntimeException选中。还要从查找方法中删除误导性throws声明——它不会抛出任何东西——封装在 Promise 中的代码将抛出,而不是创建 Promise 的方法。

Promise 中抛出的异常在设计上对代码完全不可见,代码创建并订阅它们。相反,您通常希望使用未经检查的异常并以特定于特定 Promise 库的方式处理它们(有关其异常处理设施的详细信息,请参阅CompletionStage的文档)。

于 2016-02-26T04:39:39.210 回答