2024 Clojure 状态调查! 中分享您的想法。

欢迎!请参阅 关于 页面以获取更多关于该功能的信息。

+2
多重方法
已关闭
请参阅 https://groups.google.com/forum/#!topic/clojure/3nMn6TiBGOg, 该链接尚未收到任何回复。

prefers(x,y) 递归调用 parents.invoke() 来访问祖先。
这会遍历全球层次结构中的父类,而不是多方法的层次结构。
这是预期的行为吗?为什么会这样呢?

基于假设,prefer-method 对于局部和全局层次结构应该表现相同,以下是对此的两个单元测试。
MultiFn-prefers-with-local-hierarchy 因为 "多个方法" IllegalArgumentException 失败。
MultiFn-prefers-with-global-hierarchy 成功。

(test/deftest MultiFn-prefers-with-local-hierarchy
  (def local-hierarchy
    (let [h (make-hierarchy)
          h (derive h ::c0 ::b0)
          h (derive h ::d0 ::c0)
          h (derive h ::d0 ::a0)]
      h))
  (defmulti local identity :hierarchy #'local-hierarchy)
  (defmethod local ::a0 [x] [::a0 x])
  (defmethod local ::c0 [x] [::c0 x])
  (prefer-method local ::b0 ::a0)
  (test/is (= [::c0 ::d0] (local ::d0)))))

(test/deftest MultiFn-prefers-with-global-hierarchy
  (derive ::c1 ::b1)
  (derive ::d1 ::c1)
  (derive ::d1 ::a1)
  (defmulti global identity)
  (defmethod global ::a1 [x] [::a1 x])
  (defmethod global ::c1 [x] [::c1 x])
  (prefer-method global ::b1 ::a1)
  (test/is (= [::c1 ::d1] (global ::d1))))

如果这确实是错误的,修复将非常简单。一旦确认这是一个真实的问题,我就会提交一个补丁。
关闭了以下备注: 在 1.11.0-alpha4 中发布

3 个答案

0
by

评论者:alexmiller

欢迎贡献补丁

by
嗨,Alex,

我几年前在这个问题上提交了一个补丁,在https://clojure.atlassian.net/browse/CLJ-2234, 我还需要做些什么来让它得到考虑吗?愿意做出您想要的任何更改。
by
我们根据投票数量(部分基于优先级)考虑问题,所以现在这个列表中排名相当靠后。
0
by

评论者:palisades-lakes

我不确定对preferMethod的更改。
我将resetCache移动到开头,这样
perfers()就可以使用层次结构的当前状态调用。由于我们处于写锁中,我认为没有必要再次调用它。

0
by
参考:https://clojure.atlassian.net/browse/CLJ-2234(由palisades-lakes报告)
...