Skip to search formSkip to main contentSkip to account menu

Double dispatch

Known as: Double dispatching, Double-Dispatching 
In software engineering, double dispatch is a special form of multiple dispatch, and a mechanism that dispatches a function call to different… 
Wikipedia (opens in a new tab)

Papers overview

Semantic Scholar uses AI to extract papers important to this topic.
2016
2016
UML state machines and their visual representations are much more suitable to describe logical behaviors of system entities than… 
2015
2015
The ETC++ library, "Expression Templates with Concepts in C++", provides an implementation of expression templates based on… 
2013
2013
Syntax Tree and Visitor Pattern Before discovering the GWT compiler, it is better to mention Abstract Syntax Tree (AST). The best… 
2011
2011
Along with the development of power grid,the requirement on the stability of power communication system is becoming higher and… 
2009
2009
The invention discloses a method for realizing a double dispatch command center system in an IP network, belonging to the… 
2008
2008
class Exp{ public abstract T Accept<T,D>(Visitor<T,D> v, D x); } class PlusExp : Exp { private Exp e1, e2; public PlusExp(Exp a… 
2006
2006
Double dispatch is the ability to dynamically select a method not only according to the run-time type of the receiver (single… 
1996
1996
Two variations on the Visitor pattern are pre sented. A Default Visitor provides default handlers for cases where the… 
1993
1993
classes Account, Transaction, Attribute Way objects interact: Transaction -> Account Transaction can post itself to set of…