Uses of Interface
java.util.function.ToIntFunction
-
Packages that use ToIntFunction 软件包 描述 java.util 包含集合框架,一些国际化支持类,一个服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,一个位数组和几个其他实用程序类。java.util.concurrent 实用程序类通常用于并发编程。java.util.stream 支持元素流功能性操作的类,例如集合上的map-reduce转换。 -
-
Uses of ToIntFunction in java.util
Methods in java.util with parameters of type ToIntFunction Modifier and Type 方法 描述 static <T> Comparator<T>
Comparator. comparingInt(ToIntFunction<? super T> keyExtractor)
接受从类型T
中提取int
排序键的功能,并返回一个Comparator<T>
,该数据按该排序键进行比较。default Comparator<T>
Comparator. thenComparingInt(ToIntFunction<? super T> keyExtractor)
返回具有提取int
排序键的功能的字典顺序比较器。 -
Uses of ToIntFunction in java.util.concurrent
Methods in java.util.concurrent with parameters of type ToIntFunction Modifier and Type 方法 描述 int
ConcurrentHashMap. reduceEntriesToInt(long parallelismThreshold, ToIntFunction<Map.Entry<K,V>> transformer, int basis, IntBinaryOperator reducer)
返回使用给定的reducer累加给定变换的结果,以组合值,给定基础作为一个标识值。int
ConcurrentHashMap. reduceKeysToInt(long parallelismThreshold, ToIntFunction<? super K> transformer, int basis, IntBinaryOperator reducer)
返回使用给定的reducer累加所有键的给定变换的结果,以组合值,给定基础作为标识值。int
ConcurrentHashMap. reduceValuesToInt(long parallelismThreshold, ToIntFunction<? super V> transformer, int basis, IntBinaryOperator reducer)
返回使用给定的reducer累加所有值的给定变换的结果,以组合值,给定基础作为标识值。 -
Uses of ToIntFunction in java.util.stream
Methods in java.util.stream with parameters of type ToIntFunction Modifier and Type 方法 描述 static <T> Collector<T,?,Double>
Collectors. averagingInt(ToIntFunction<? super T> mapper)
返回一个产生应用于输入元素的整数值函数的算术平均值的Collector
。IntStream
Stream. mapToInt(ToIntFunction<? super T> mapper)
返回一个IntStream
其中包含将给定函数应用于此流的元素的结果。static <T> Collector<T,?,IntSummaryStatistics>
Collectors. summarizingInt(ToIntFunction<? super T> mapper)
返回一个Collector
,int
生产映射函数应用于每个输入元素,并返回结果值的汇总统计信息。static <T> Collector<T,?,Integer>
Collectors. summingInt(ToIntFunction<? super T> mapper)
返回一个Collector
,它产生应用于输入元素的整数值函数的和。
-