vote up 6 vote down star
2

Found myself trying to find a link to an official definition of this design pattern which I believe I saw in Go4 but can't seem to find it anywhere.

class Processor{
    ProcessParameter(AbstractParameter x){
    	x.Process(this);
    }

    ProcessParameter(ParameterA x){
    	... A-specific logic...
    }

    ProcessParameter(ParameterB x){
    	... B-specific logic...
    }
}

abstract class AbstractParameter{
    abstract void Process(Processor p);
}

class ParameterA : AbstractParameter{
    override void Process(Processor p){
    	p.ProcessParameter(this);
    }
}

class ParameterB : AbstractParameter{
    override void Process(Processor p){
    	p.ProcessParameter(this);
    }
}
flag

1 Answer

vote up 12 vote down check

It is the Visitor Pattern. The technique is called "double dispatch".

link|flag
I liked the first version of your answer better. This is Double Dispatch. The Visitor pattern adds the notion of multiple Visitors (called "Processor" in my example). – zvolkov Apr 27 at 18:14
I switched the emphasis since the title asks for the "pattern", and the question refers to GoF. – sylvarking May 8 at 5:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.