作者:时-_尚微视点 | 来源:互联网 | 2022-11-14 19:42
1> Ravindra Ran..:
您可以IntStream
用来完成此任务。使用整数值作为键,并使用该索引处字符串数组中的相关值作为映射值。
Map counterToStr = IntStream.range(0, strings.length)
.boxed()
.collect(Collectors.toMap(Function.identity(), i -> strings[i]));
消除需求的另一种选择split
是,
Map counterToStr = IntStream.range(0, strings.length)
.boxed()
.collect(Collectors.toMap(Function.identity(), i -> str.charAt(i) + ""));