I'm using JRuby 1.6.0.RC1. I would like to use the java.util.Iterators on some Java libraries more idiomatically from Ruby, by providing a facade implementing a Ruby each method.

My first attempt was basically like this:

def each_property( myJavaObj )
  i = myJavaObj.myIterator
  while i.hasNext
    yield i.next
  end
end

However, when I call each_property {|p| puts "#{p}"} I get the error: LocalJumpError: yield called out of block.

Can anyone either suggest what I'm doing wrong, or point to a better pattern for invoking Java iterators from Ruby?

link|improve this question

74% accept rate
feedback

2 Answers

up vote 2 down vote accepted

JRuby has builtin support for turning java.util.Iterators into Ruby Enumerables. So you might also wish to simply do

myJavaObj.myIterator.each { ... }

in your code.

link|improve this answer
feedback

I'm not sure, but maybe calling yield inside the while block causes this issue.

You may try calling the block explicitly:

def each_property(myJavaObj, &block)
  i = myJavaObj.myIterator
  while i.hasNext
    block.call i.next
  end
end
link|improve this answer
Thanks Koraktor, that gets my code to run. It would be nice to understand exactly what's going on here though – Ian Dickinson Jan 31 '11 at 15:24
&block will explicitly tell that your method expects a block and that it will be "converted" into a Proc object called block. Inside the while loop it's called with your parameter - sort of block(i.next). – Koraktor Jan 31 '11 at 15:31
Sorry, I wasn't clear. I understand what the &block does; what I'm not sure is why the original yield in the context of a while block didn't work. Just trying to make sure I understand what went wrong so that I can avoid a similar error in future! – Ian Dickinson Jan 31 '11 at 15:56
feedback

Your Answer

 
or
required, but never shown

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