ruby – 何时使用隐式或显式代码块

我试图了解何时应该隐式或显式地编码块.给出以下代码块:

>隐含

def two_times_implicit 
  return "No block" unless block_given? 
  yield 
  yield 
end

puts two_times_implicit { print "Hello "}
puts two_times_implicit

>明确

def two_times_explicit (&i_am_a_block) 
  return "No block" if i_am_a_block.nil? 
  i_am_a_block.call 
  i_am_a_block.call 
end 

puts two_times_explicit { puts "Hello"}
puts two_times_explicit

是否更喜欢使用一个而不是另一个?是否存在一种标准做法,是否存在一种情况,即哪种情况比另一种情况更好或不同,哪种情况根本不起作用?

解决方法

通过&接收块从块中创建一个新的proc对象,因此从效率的角度来看,最好不要使用它.但是,使用&通常可以更容易地定义可能会或可能不会占用块的方法,并且使用&,您也可以将块与参数一起处理,因此它是许多人的首选.

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...