问题描述
我对Collectors.toList()和Collectors.toSet()静态方法感到很困惑。这两种方法不接受任何参数。那么他们如何知道要返回哪种类型的收藏家?
例如,如果我们有这一行:
Collectors.toList();
返回的收集器是收集器<对象,?,列表<对象>> ;
。
如果我们有这一行:
集电极<整数,列表与LT;整数>> c = Collectors.toList();
然后Collectors.toList()将返回收集器<整数,?,列表与LT;整数>>
。如果不接受任何输入参数,toList()方法如何知道它需要返回 Collector< Integer,?,List< Integer>>
?
也许编写toList()的示例代码对我的理解很有帮助。
提前致谢。目标类型。
例如:
// v ---通用参数`T`由目标类型推断
收集器<整数,?,列表与LT;整数>> c = Collectors.toList();
// v --- unbounded类型参数是扩展`Object`
Collectors.toList();
I am quite puzzled about the Collectors.toList() and Collectors.toSet() static methods. These two methods do not take in any parameters. So how do they know what types of Collector to return?
For example, if we have this line:
Collectors.toList();
The returned Collector is Collector<Object,?,List<Object>>
.
If we have this line:
Collector<Integer,?,List<Integer>> c = Collectors.toList();
Then Collectors.toList() will return a Collector<Integer,?,List<Integer>>
. Without taking in any input parameters, how does the toList() method know that it needs to return a Collector<Integer,?,List<Integer>>
?
Perhaps a sample codes of how toList() is written would be helpful in my understanding.
Thanks in advance.
This feature is introduced as target type in generic type inference.
For example:
// v--- the generic parameter `T` is inferred by the target type
Collector<Integer,?,List<Integer>> c = Collectors.toList();
// v--- the unbounded type parameter is extends `Object`
Collectors.toList();
这篇关于Collectors.toList()返回的收集器类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!