- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我相信我在这里遇到了 eclipse 错误,但我想确认一下。
我使用的是java 8(jdk 1.8.0_102),我的代码编译正常,但eclipse给我一个错误。
我的代码如下所示:
public ListenableFuture<ProtoBufExchange> myMethod(
//some code here
return Futures.transform(future,(Request.Builder reqBuilder) -> {
//some code here
return Futures.immediateFuture(exchange);
}
eclipse中显示的错误是这样的:
The method transform(ListenableFuture<Request.Builder>, AsyncFunction<? super Request.Builder,? extends ProtoBufExchange>) is ambiguous for the type Futures.
如果我进行强制转换,Eclipse 不会提示:
public ListenableFuture<ProtoBufExchange> myMethod(
//some code here
return Futures.transform(future,(AsyncFunction<Request.Builder, ProtoBufExchange>) (Request.Builder reqBuilder) -> {
//some code here
return Futures.immediateFuture(exchange);
}
我知道 guava 15.0 Future.transform() 已重载,具有以下两种形式(在较新的 guava 版本上,异步方法具有不同的名称):
transform(ListenableFuture<I> input, Function<? super I,? extends O> function)
或
transform(ListenableFuture<I> input, AsyncFunction<? super I,? extends O> function)
但是jdk编译器以某种方式解决了这个歧义。也许是因为在上面的代码中,如果我们实现的是 Function,而不是 AsyncFunction,Futures.transform 的返回类型将与方法返回类型不匹配。
这是 eclipse 上的错误吗?我在这里错过了什么吗?
有关我的环境的更多详细信息:
jdk:1.8.0_102
eclipse :4.6.2
Guava :15.0
最佳答案
“显式类型 lambda 表达式”和“隐式类型 lambda 表达式”之间存在区别。
形式为 name -> expressiorOrBlock
的隐式类型 lambda 表达式或(name[,name]*) -> expressionOrBlock
需要其上下文(即已解析的方法)来确定其类型,因此不用于消除重载方法的歧义。这样做并非不可能,但由于由此产生的复杂性,规范明确排除了这一点。
格式为 (Type name[, Type name]*) -> expressionOrBlock
的显式类型 lambda 表达式拥有确定其功能签名所需的一切,包括其返回类型,这允许使用它们来消除重载方法的歧义。
提供一个简单的例子:
interface F<T,R> {
R apply(T t);
}
interface AF<T,R> {
Future<R> apply(T t);
}
static <T,R> Future<R> method(F<T,R> f) {
return null;
}
static <T,R> Future<R> method(AF<T,R> f) {
return null;
}
public static void main(String[] args) {
// these two don't compile
method(x -> "bla");
method(x -> new FutureTask<String>(null));
// these two do compile
method((Object x) -> "bla");
method((Object x) -> new FutureTask<String>(null));
}
正式规则在JLS, §15.12.2.5. Choosing the Most Specific Method中指定。 ,但它还包含一个非正式的提示:
The informal intuition is that one method is more specific than another if any invocation handled by the first method could be passed on to the other one without a compile-time error.
我想,很容易看出method(AF)
可以处理的每个调用也可以通过 method(F)
处理,而相反的情况不适用,即 method((Object x) -> "bla")
调用只能由 method(F)
处理,所以它没有歧义,而method((Object x) -> new FutureTask<String>(null))
两者都可以处理,但是 method(AF)
更具体。
A functional interface type
S
is more specific than a functional interface typeT
for an expressione
ifT
is not a subtype ofS
and one of the following is true (whereU₁
...U<sub>k</sub>
andR₁
are the parameter types and return type of the function type of the capture ofS
, andV₁
...V<sub>k</sub>
andR₂
are the parameter types and return type of the function type ofT
):
- If e is an explicitly typed lambda expression (§15.27.1), then one of the following is true:
R₂
isvoid
.R₁
<:
R₂
.- …
因此,在涉及显式类型化 lambda 表达式的特定情况下,函数类型的返回类型已经足以消除歧义。
但请注意,编译示例代码也会产生警告:
warning: [overloads]
<T#1,R#1>method(F<T#1,R#1>)
… is potentially ambiguous with<T#2,R#2>method(AF<T#2,R#2>)
提醒一下,隐式类型的 lambda 表达式对于此类重载方法总是不明确的,而且使用显式类型 lambda 表达式的方法选择可能并不直观。
关于java - Guava future 中不明确的 lambda 重载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42142255/
这个问题不太可能帮助任何 future 的访客;它只与一个小地理区域、一个特定时刻或一个非常狭窄的情况相关,而这些情况通常不适用于互联网的全局受众。如需帮助使这个问题更广泛地适用,visit the
我有: data class Edge(val spec: String, val weight: Int) private val graph: SortedSetMultimap = TreeMu
鉴于使用以下代码创建的 Guava 缓存,如果未设置,是否有最大缓存大小? LoadingCache loadingCache = CacheBuilder.newBuilder().build(ne
我需要向 Guava Multimap 添加一个键,其中一个空集合作为值。我该如何做到这一点? 我试过这个: map.put( "my key", null ); 但是调用 get() 会返回一个包含
我刚刚遇到这样的代码: ExecutorService executorService = MoreExecutors.sameThreadExecutor(); for (int i = 0; i
我使用的是来自 Google Collections 的 com.google.common.collect.PrimitiveArrays,但是我在 Guava 中找不到它,是否已重命名?我在哪里可
当前,我正在使用以下代码在映射中创建过滤器以匹配并提供过滤后的结果集列表。 final Map filteredMap = Maps.filterKeys(mymap, Predicates.cont
当我在 app/build.gradle 中使用 implementation 'com.google.firebase:firebase-inappmessaging-display:17.2.0'
Google Guava Cache 文档指出: Refreshing is not quite the same as eviction. As specified in LoadingCache.
Guava 的 ImmutableList.Builder 的线程安全保证是什么? javadocs 没有说。 最佳答案 虽然 Guava Immutable 类是线程安全的,但它们的构建器不是。对于
目前我在我的应用程序中使用 guava EventBus 方法。监听器尝试做一些工作,如果失败,事件应该回到总线并重新发送。 我的问题是:如果我的应用程序出现故障(执行关闭)怎么办?它会在总线上发送剩
是否可以使用现有的 java 静态方法作为开箱即用的扩展? 让我们考虑 com.google.common.collect.Iterables.transform。现在,因为我不知道如何处理这个问题,
我想创建一个由 Guava 函数支持的只读 map 。我有一个提供值的函数,给定一个键。 Function f = new Function() { public Object apply(f
我最近将 Google Guava 作为库添加到我的 Eclipse 项目中(我从 http://code.google.com/p/guava-libraries/ 下载了“guava-16.0.j
我们最近从 Drools 5 升级到 Drools 6 并遇到了令人不安的冲突问题。 我们有kie-ci导入到项目中。 kie-ci引进 sisu-guava . sisu-guava改变了谷歌 Gu
尝试取消注册时,我在我的一个类(class)中收到以下错误。 java.lang.IllegalArgumentException: missing event handler for an anno
我的项目传递依赖于 Google Guava lib。突然(使用新版本的 Guava ?)应用程序在启动时崩溃java.lang.NoSuchMethodError: 'java.util.strea
我喜欢 Google Guava 并且经常使用它,但是我总是发现我在写一种方法。 public static T tryFind(Iterable iterable, Predicate pred
我使用的是普通的旧 Java 1.6,并且对这两个库都感兴趣。 阅读文档后,我不确定是否存在差异(如果有的话)。任何人都可以解释一下,或者指出一些相关信息吗?提前致谢! 最佳答案 RxJava 比 L
我用的是 Guava 17.0 private static final ConcurrentMap imageMap = new MapMaker().softValues().ma
我是一名优秀的程序员,十分优秀!