Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the behavioural differences between the following two implementations in Ruby of the thrice method?

module WithYield
  def self.thrice
    3.times { yield }      # yield to the implicit block argument
  end
end

module WithProcCall
  def self.thrice(&block)  # & converts implicit block to an explicit, named Proc
    3.times { block.call } # invoke Proc#call
  end
end

WithYield::thrice { puts "Hello world" }
WithProcCall::thrice { puts "Hello world" }

By "behavioural differences" I include error handling, performance, tool support, etc.

share|improve this question

4 Answers

I think the first one is actually a syntactic sugar of the other. In other words there is no behavioural difference.

What the second form allows though is to "save" the block in a variable. Then the block can be called at some other point in time - callback.


Ok. This time I went and did a quick benchmark:

require 'benchmark'

class A
  def test
    10.times do
      yield
    end
  end
end

class B
  def test(&block)
    10.times do
      block.call
    end
  end
end

Benchmark.bm do |b|
  b.report do
    a = A.new
    10000.times do
      a.test{ 1 + 1 }
    end
  end

  b.report do
    a = B.new
    10000.times do
      a.test{ 1 + 1 }
    end
  end

  b.report do
    a = A.new
    100000.times do
      a.test{ 1 + 1 }
    end
  end

  b.report do
    a = B.new
    100000.times do
      a.test{ 1 + 1 }
    end
  end

end

The results are interesting:

      user     system      total        real
  0.090000   0.040000   0.130000 (  0.141529)
  0.180000   0.060000   0.240000 (  0.234289)
  0.950000   0.370000   1.320000 (  1.359902)
  1.810000   0.570000   2.380000 (  2.430991)

This shows that using block.call is almost 2x slower than using yield.

share|improve this answer
2  
I think Ruby would be more consistent if that were true (i.e. if yield were just syntactic sugar for Proc#call) but I don't think it's true. e.g. there's the different error handling behaviour (see my answer below). I've also seen it suggested (e.g. stackoverflow.com/questions/764134/…) that yield is more efficient, because it doesn't have to first create a Proc object and then invoke its call method. – Sam Stokes Sep 11 '09 at 10:37
Re update with benchmarks: yeah, I did some benchmarks too and got Proc#call being more than 2x as slow as yield, on MRI 1.8.6p114. On JRuby (1.3.0, JVM 1.6.0_16 Server VM) the difference was even more striking: Proc#call was about 8x as slow as yield. That said, yield on JRuby was twice as fast as yield on MRI. – Sam Stokes Sep 11 '09 at 13:36
I did mine on MRI 1.8.7p174 x86_64-linux. – jpastuszek Sep 11 '09 at 15:24
2  
you're also missing a third case : def test(&block) ; 10.times(&block) ; end, which should test out the same as the yield case. – rampion Sep 12 '09 at 17:11

The behavioral difference between different types of ruby closures has been extensively documented

share|improve this answer
That's a good link - will have to read it in detail later. Thanks! – Sam Stokes Sep 12 '09 at 11:05
Some more info, specifically about the unary ampersand, but in understanding that you also would understand the differences. weblog.raganwald.com/2008/06/… – scragz Mar 21 '11 at 23:02

BTW, just to update this to current day using:

ruby 1.9.2p180 (2011-02-18 revision 30909) [x86_64-linux]

On Intel i7 (1.5 years oldish).

user     system      total        real
0.010000   0.000000   0.010000 (  0.015555)
0.030000   0.000000   0.030000 (  0.024416)
0.120000   0.000000   0.120000 (  0.121450)
0.240000   0.000000   0.240000 (  0.239760)

Still 2x slower. Interesting.

share|improve this answer

They give different error messages if you forget to pass a block:

> WithYield::thrice
LocalJumpError: no block given
        from (irb):3:in `thrice'
        from (irb):3:in `times'
        from (irb):3:in `thrice'

> WithProcCall::thrice
NoMethodError: undefined method `call' for nil:NilClass
        from (irb):9:in `thrice'
        from (irb):9:in `times'
        from (irb):9:in `thrice'

But they behave the same if you try to pass a "normal" (non-block) argument:

> WithYield::thrice(42)
ArgumentError: wrong number of arguments (1 for 0)
        from (irb):19:in `thrice'

> WithProcCall::thrice(42)
ArgumentError: wrong number of arguments (1 for 0)
        from (irb):20:in `thrice'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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