I want to use the visitor pattern to implement a tree. So I made a main class Node and other classes that extends that class (for example Node1, Node2, Node3). In Node I have a String and an ArrayList of Nodes which is a list of children of that node. So I implemented a visitor with 3 functions visit(Node1 x), ... and in main I want to call accept of every node:
SomeVisitor v = new SomeVisitor();
Node n = makeTree();
Iterator<? extends Node> it = n.children.iterator();
while(it.hasNext()) {
System.out.println(it.next().getClass());
it.next.accept(v);
}
this doesn't work because even though .getClass returns a specific class
I mean Node 1 , 2 or 3 and the error I get is that is it.next is a type
node but I don't have any node object in my tree , and I didn't implement
visit(Node) just visit(Node 1,2,3)
it.next()twice in the same iteration. – toto2 Dec 27 '11 at 16:02