I've been recently playing with Groovy and have messed around with JRuby before and appreciate using the .each{} closure in their collections.
That said, I cannot help but feel that this is nothing but syntactic sugar for a visitor pattern. If you encapsulated the code within the body of the closure within a class and passed an instance of that class using the visitor pattern it seems like the exact same thing, albeit with less hassle.
So, are there other capabilities of closures that I haven't yet seen that make them fundamentally different that the visitor pattern, or are people just really that excited over this syntactic sugar?
To me it seems like more of a library issue than a language issue.
Here is a quick mock-up a Java list that seems to behave like the each closure in Groovy lists.
public class ClosureList<E> extends ArrayList<E>{
interface Visitor<E>{
void visit( E e );
}
void accept( Visitor<E> v ){
for( Iterator<E> myItr = this.iterator(); myItr.hasNext() )
v.visit( myItr.next() );
}
}
Then just have
public class ClosureTest{
public static void main( String[] args ){
ClosureList<String> myList = new ClosureList<String>();
myList.add( "green eggs" );
myList.add( "green ham" );
clStr.accept(
new Visitor<String>(){
void visit( String s ){
System.out.println( s )
}
}
);
}
}
which seems the same to in Groovy:
def l = [ "green eggs", "green ham" ]
l.each{ println it }
instanceof- how are closures (actually, you probably mean code blocks and higher order functions) helping with that? – Tomasz Nurkiewicz Apr 11 '12 at 17:34eachin groovy is like a concise implementation of the visitor pattern? There's more to closures thaneach– tim_yates Apr 11 '12 at 18:11