我知道CharBag bag = CharAdapter.adapt("hello world!").toBag();
它很好,但它没有链接。我需要带有链接输入字符串的包,以及如何从该集合中获取键和值以生成如下输出:
h 1
e 1
l 3
o 2
1
w 1
r 1
d 1
! 1
我知道CharBag bag = CharAdapter.adapt("hello world!").toBag();
它很好,但它没有链接。我需要带有链接输入字符串的包,以及如何从该集合中获取键和值以生成如下输出:
h 1
e 1
l 3
o 2
1
w 1
r 1
d 1
! 1
LinkedCharBag
正如您所指出的,Eclipse Collections目前没有。distinct
您可以通过使用以下解决方案来实现您的目标CharAdapter
:
CharAdapter helloWorld = Strings.asChars("hello world!");
CharBag bag = helloWorld.toBag();
helloWorld.distinct().forEach(c -> System.out.println(c + " " + bag.occurrencesOf(c)));