visitor pattern
常见例句
- The visitor pattern is a simple technique to process arbitrary data structures.
访问者模式是一种处理任意数据结构的简单技术。 - Jomo Fisher demonstrates a visitor pattern than will walk an expression tree, creating a new tree while swapping out specific nodes.
Jomo Fisher演示了一个使用访问者模式代码,这段代码通过创建一个新树来替换特定的节点,而不是浏览整个表达式树。 - Adding new data types (classes) with visitors is difficult, however, as the Visitor pattern requires a visit() method for all concrete types.
然而,通过访问者添加新数据类型(类)较为困难,因为访问者模式要求所有具体类型都具有一个 visit() 方法。 返回 visitor pattern