我目前正在使用 sortedCollection 存储字符字典(键)和该字符(值)的出现次数。遍历 sortedCollection 时,如何仅访问键值?
例如
[que last notNil] whileTrue: [
stdout << 'current character is ' *key* << ' and occurs << *val* << ' times.' << nl.
]
que
按值对字典进行排序的 sortedCollection在哪里。
我的目标如下:假设que
有:
[$a:20, $e:100]
其中第一个字母是字典的键,第二个数字是字典的值。我的输出应该是这样的:
current character is a and occurs 20 times.
current character is e and occurs 100 times.
我不确定如何获取a
, 或字典中的键,因为键是任意的。