I am working with method mm in ruby 1.9.2 it behaves so weird, instead of the expected result 1.9.2=>10 I am getting

ELSE **
1.9.2=>8

Any idea of what is going on?

class A

 def mm(data)
   begin
     sendLen = data
     return sendLen
   rescue Exception
     STDOUT.write("Rescue *#{$!}*\n")
   else
     STDOUT.write("ELSE *#{$!}*\n")
   end
   #sendLen
 end

end # class A

a = A.new
print "#{RUBY_VERSION}=>#{a.mm(10)}\n"

With 1.8.7 I am getting expected result

1.8.7=>10
link|improve this question
In have read "Exceptions" on page 355 of book "Programming Ruby 1.9" by Dave Thomas et al but not useful... – user454322 Jun 24 '11 at 11:18
@Evgeny Shadchnev Why did you mention 1.8.6 in the title? I changed it to 1.8.7. – sawa Jun 24 '11 at 12:57
@sawa Sorry, a typo. You are right. – Evgeny Shadchnev Jun 24 '11 at 13:07
feedback

1 Answer

up vote 3 down vote accepted

It's an open bug in Ruby. There is a discussion, though, whether it should behave like it behaved in 1.8 or as it does in 1.9.

Matz, the author of Ruby, believes that it should behave as in 1.8.

link|improve this answer
1  
To clarify, the reason it's returning 8 instead of the expected 10 is that STDOUT.write("ELSE *#{$!}*\n") is the last line to be actually executed (instead of the return) and you get returned the value from that (which is the number of bytes written, or 8 in this case). – Marten Veldthuis Jun 24 '11 at 11:43
Thanks Evgeny. I think so too. I thought it was a bug...now I am sure. – user454322 Jun 24 '11 at 11:43
Thanks Marten....now I know where the 8 comes from – user454322 Jun 24 '11 at 11:45
feedback

Your Answer

 
or
required, but never shown

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