multimethod

多方法的:涉及或使用多种研究方法或技术的。

常用释义

词性释义

adj.

多方法的:涉及或使用多种研究方法或技术的。
例句
  • 全部
To choose proper collaboration strategy can improve the optimization character of multimethod collaborative optimization algorithm.
合理选择协作策略,可以进一步提高多方法协作优化方法的优化特性。
This multimethod is turned into a visitor with the node-eval function.
这种多重方法又转为一个具有node-eval函数的访问者。
在Clojure中,多重方法是一种特殊的函数类型,它能将调用拆分为两个步骤。
最后,我们创建一个多重方法来处理求值,即eval-expr。
We then create implementations of the multimethod for each type we want to handle, using defmethod.
随后,我们利用defmethod为希望处理的每种类型创建多重方法的实现。
清单7是eval-concat多重方法的完整实现。
与Java访问者解决方案相似,我们可以利用一个多重方法(multimethod),为树中的每一个节点类型实现一个eval-concat操作。
This example builds up a small tree of nodes, then executes the multimethod eval-concat on those nodes to find a concat of string literals.
该示例构建了一个小的节点树,随后对这些节点执行多重方法eval-concat,以查找字符串的concat。
A multimethod is defined by two macros: defmulti and defmethod.
多重方法由两个宏定义:defmulti和defmethod。
Listing 8 is an example of theeval-concat multimethod in use.
清单8是eval-concat多重方法的一个应用示例。