In particular, if you have a single closed sum type, function overloading is the best way to handle distinctions. If you want it to be open, single virtual dispatch is a common option.
It's only when you get two different sum types, with one or both being open, that you start benefitting from the visitor pattern.
It’s exactly the same benefits provided by language-native sum types with ADT pattern matching (aside from the visitor pattern requiring more boilerplate).
The operation can itself be a polymorphic operation on a different type hierarchy or sum type, which is the scenario you are thinking of, but that’s not necessary for being able to benefit from the visitor pattern.
Read the original description of the visitor pattern in the GoF book. It’s about implementing operations on an existing type hierarchy without having to modify the code of that type hierarchy.
//library code
sealed class TreeNode{
Object[] children;
}
sealed class LeafNode {
int value
}
//application code
int sumTree(Object o) {
if(o instanceof TreeNode) {
var tn = (TreeNode)o;
sum += sumTree(tn);
} else if (o instanceof LeafNode) {
var ln = (LeafNode) o;
sum += sumTree(ln) ;
}
}
int sumTree(TreeNode a) {
var sum = 0;
for (Object o in a.Children) {
sum += sumTree(o) ;
}
return sum;
}
int sumTree(LeafNode ln) {
return ln.value;
}
For some added type safety, we could use a marker interface instead of Object, but the code would be equivalent. You don't need visitors or ADTs even if you're working with Java 1.0 (you could actually write this in C pretty easily).Now, if you start adding actual subtypes to TreeNode and LeafNode, this will quickly stop working, especially if you want more than one operation.
For example, if you wanted to add a DictionaryTreeNode that stores its children in a dictionary instead of a list, the visitor-based version would not require any change to the SumTree visitor, as DictionaryTreeNode can just call visitTreeNode in its accept() method.
ADTs and pattern matching don't solve this problem in any way - you can't add a new node subtype, because the operation explicitly decides what to do based on the variant.
The visitor pattern doesn't require you to have a hierarchy of operations. It doesn't even require the sum type options to form a public type hierarchy. For example, the following Java code implements the typical binary-tree sum type:
public abstract class Tree<V>
{
public abstract <R> R apply(Visitor<? super V, R> visitor);
public interface Visitor<V, R>
{
public R whenLeaf(V value);
public R whenNode(Tree<? extends V> left, Tree<? extends V> right);
}
public static <V> Tree<V> leaf(V value)
{
return new Tree<V>()
{
@Override
public <R> R apply(Visitor<? super V, R> visitor)
{
return visitor.whenLeaf(value);
}
};
}
public static <V> Tree<V> node(Tree<? extends V> left, Tree<? extends V> right)
{
return new Tree<V>()
{
@Override
public <R> R apply(Visitor<? super V, R> visitor)
{
return visitor.whenNode(left, right);
}
};
}
private Tree() { }
}
This is what I'm describing.(Incidentally, that design also allows you to replace the implementation by a tagged-union approach. The result wouldn't be the full visitor pattern anymore, of course.)
EDIT: Another way to put this: The visitor pattern abstracts away the case-distinction mechanism into a single implementation. In your code example, every operation (like sumTree) has to re-implement the case-distinction mechanism, that is, the ifs and the type checks. The visitor pattern decouples the case-distinction mechanism from the concrete case distinctions.
But I maintain my opinion that this is not the purpose of the Visitor pattern. I would go so far as to say that this is an anti-pattern. The visitor pattern is only useful when your model actually needs double dispatch - when you have a hierarchy of types with proper subtypes that need to be handled by a hierarchy of operations. If you do have this problem, the only solutions are the visitor pattern or native multiple dispatch like in CLOS. ADTs and pattern matching can't solve this problem.