I know there is no direct equivalent in Java itself, but perhaps a third party?

It is really convenient. Currently I'd like to implement an iterator that yields all nodes in a tree, which is about five lines of code with yield.

link|improve this question

71% accept rate
3  
I know, I know. But I think knowing more languages is more power. Furthermore, the backend development (which I'm doing) in the company I work for right now is being done in Java, so I can't really choose the language :( – ripper234 Dec 30 '09 at 16:44
remove C# tag? your question is a good one and is really about Java even if you refer to a C# feature. – Jason S Dec 30 '09 at 16:58
feedback

3 Answers

up vote 6 down vote accepted

Here is an article on this and library from Jim Blackler that does this in Java alone.

link|improve this answer
This looks like what I was looking for, thanks. – ripper234 Dec 30 '09 at 18:31
I just saw this! Glad it was useful. – Jim Blackler Apr 12 '10 at 12:47
feedback

Linky Linky.

link|improve this answer
2  
chaoticjava.com/yielder/api Internal server error. – Stefan Kendall Dec 30 '09 at 16:15
hey, that's cool, I didn't know about that. +1 for the question and your answer. – GregS Dec 30 '09 at 16:15
alternative link ohloh.net/p/infomancers-collections – gingerbreadboy Dec 30 '09 at 16:16
"and rewriting the bytecode of a yieldNextCore()" - seems too risky so I won't use it in production code (there are other alternatives, like writing an 'iterateAllMembers()' method that accepts a Func<T>. – ripper234 Dec 30 '09 at 16:45
feedback

http://msdn.microsoft.com/en-us/library/9k7k7cf0.aspx

link|improve this answer
I'm asking how to do this is Java, not C# :) – ripper234 Dec 30 '09 at 18:28
Oops! Got a bit ahead of myself there. – user239720 Dec 30 '09 at 19:32
feedback

Your Answer

 
or
required, but never shown

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