我必须使用值从 map 中提取键。除了自己实现反向查找之外,还有其他方法吗?

最佳答案

尝试

(some #(if (= (val %) your-val) (key %)) your-map)

10-02 18:14