这里有关于ruby中当前优化实现的很好的文档: http://ruby-doc.org//core-2.2.0/doc/syntax/refinements_rdoc.html, 但是有一些奇怪的角落案例。
首先,include module
与using module
正交(一个包含模块的实例方法,另一个包含激活细化)。但是有一个技巧包括一个改进模块本身,请参阅
Better way to turn a ruby class into a module than using refinements?
def to_module(klass)
Module.new do
#note that we return the refinement module itself here
return refine(klass) {
yield if block_given?
}
end
end
class Base
def foo
"foo"
end
end
class Receiver
include to_module(Base) {
def foo
"refined " + super
end
}
end
Receiver.new.foo #=> "refined foo"
奇怪的是,此细化模块无法与using
一起使用!
m=to_module(Base) {}
m.class #=> Module
using m
#=>TypeError: wrong argument type Class (expected Module)
因此,仅使用细化模块的封闭模块。
其次我想使用上面的yield技巧来传递一个Proc来改进(即使它只接受一个块),而不需要将Proc转换回源,就像在
https://www.new-bamboo.co.uk/blog/2014/02/05/refinements-under-the-knife/。
但是在include示例中使用yield
不起作用:
def ref_module1(klass)
Module.new do
refine(klass) {
yield
}
end
end
class Receiver1
using ref_module1(Base) {
def foo
"refined " + super
end
}
def bar
Base.new.foo
end
end
Receiver1.new.bar #=> NoMethodError: super: no superclass method `foo'
我们看到Receiver1仍然使用Bar#foo而不是精炼方法。
我们如何使用module_eval
代替:
def ref_module2(klass,&b)
Module.new do
refine(klass) {
module_eval(&b)
}
end
end
class Receiver2
using ref_module2(Base) {
def foo
"refined " + super
end
}
def bar
Base.new.foo
end
end
Receiver2.new.bar #=> "refined foo"
我不太明白为什么module_eval
在这里工作而不是yield
方法。在细化区块内,' default_definee'是精简模块,因此module_eval
将' default_definee'到self
='细化模块'不应该影响它。确实在' include'在开头的示例中,当我使用module_eval
或直接yield
时,我会得到相同的结果。
任何人都可以解释这种行为吗?
答案 0 :(得分:3)
上下文(或绑定)是module_eval工作的原因,并且在最后一组示例中没有产生。它实际上与细化无关,如下所示。
从module_eval
开始:
class Foo
def run(&block)
self.class.module_eval(&block)
end
end
foo = Foo.new
foo.run {
def hello
"hello"
end
}
puts foo.hello # => "hello"
puts hello => # '<main>': undefined method 'hello' for main:Object (NameError)
在Foo#run
我们在module_eval
上致电Foo
。这会将上下文(self
)切换为Foo
。结果很像我们最初在hello
内定义了简单的class Foo
。
现在让我们来看看yield
:
class Foo
def run
yield
end
end
foo = Foo.new
foo.run {
def hello
"hello"
end
}
puts hello # => "hello"
puts foo.hello # => '<main>': private method 'hello' called for ...
yield
只是在原始上下文中调用块,在此示例中为<main>
。调用块时,最终结果与通常在顶层定义方法的结果完全相同:
class Foo
def run
yield
end
end
foo = Foo.new
def hello
"hello"
end
puts hello # => "hello"
puts foo.hello # => '<main>': private method 'hello' called for ...
您可能会注意到foo
示例中hello
似乎有yield
方法。这是将hello
定义为顶级方法的副作用。事实证明,<main>
只是Object
的一个实例,定义顶级方法实际上只是在Object
上定义私有方法,几乎所有其他方法都会继承。您可以通过打开irb并运行以下命令来查看:
self # => main
self.class # => Object
def some_method
end
"string".method(:some_method) # => #<Method: String(Object)#some_method>
现在回到你的例子。
以下是yield
示例中的内容:
def ref_module1(klass)
Module.new do
refine(klass) {
yield
}
end
end
class Receiver1
# like my yield example, this block is going to
# end up being invoked in its original context
using ref_module1(Base) {
def foo
"I'm defined on Receiver1"
end
}
def bar
# calling foo here will simply call the original
# Base#foo method
Base.new.foo
end
end
# as expected, if we call Receiver1#bar
# we get the original Base#foo method
Receiver1.new.bar # => "foo"
# since the block is executed in its original context
# the method gets defined in Receiver1 -- its original context
Receiver1.new.foo # => "I'm defined on Receiver1"
对于module_eval
,它适用于您的示例,因为它会导致块在新模块的上下文中运行,而不是在Receiver1
类上运行。