dinsdag 23 december 2008

One of these days

public interface IHate
{
void You(string name);
void Everything();
}

zondag 27 januari 2008

The Visitor and the AcyclicVisitor pattern

I just started on the Visitor and AcyclicVisitor pattern. I understand them both. I see what is happening but i am not able to figure out the main difference between the two except for the delegation part in the AcyclicVisitor. When should i use the acyclic instead of the normal visitor?