我搜索了排序 scala HashMap 的答案。哪个是
opthash.toSeq.sortBy(_._1)
我只想按键排序,因此上述解决方案应该适用。
但是,这是我的情况,上述解决方案导致错误:
def foo (opthash : HashMap[Int,String]) = {
val int_strin_list = opthash.toSeq.sortBy(_._1);
"return something"
}
我收到以下错误消息:
value sortBy is not a member of Seq[(Int, String)]
我错过了什么?我很确定 sortBy 是 Seq 类型的成员...
任何建议将不胜感激。