改进仅适用于实例方法吗?
Do refinements apply only to instance methods?
我正在尝试了解 Ruby 的优化功能,但遇到了一个我不了解的场景。
以这个示例代码为例:
class Traveller
def what_are_you
puts "I'm a Backpacker"
end
def self.preferred_accommodation
puts "Hostels"
end
end
module Refinements
module Money
def what_are_you
puts "I'm a cashed-up hedonist!"
end
module ClassMethods
def preferred_accommodation
puts "Expensive Hotels"
end
end
def self.included(base)
base.extend ClassMethods
end
end
refine Traveller do
include Money
end
end
现在,当我在 REPL 中执行此操作时:
Traveller.new.what_are_you # => I'm a Backpacker
Traveller.preferred_accommodation # => Hostels
using Refinements
Traveller.new.what_are_you # => I'm a cashed-up hedonist!
Traveller.preferred_accommodation # => Hostels (???)
为什么#what_are_you
精化了,而.preferred_accommodation
却没有?
您需要使用 singleton_class 范围调用 refine Traveler 以覆盖 class 方法。通过将以下代码添加到您的 Refinements 模块而不是 self.included
,您可以获得预期的结果。
module Refinements
refine Traveller.singleton_class do
include Money::ClassMethods
end
end
这篇文章(http://timelessrepo.com/refinements-in-ruby)将帮助您更深入地了解Refinements。
正如@MasashiMiyazaki 所解释的那样,您必须优化两个 classes:Traveller
和 Traveller
的单例 class。这实际上可以让您大大简化代码:
module Money
refine Traveller do
def what_are_you
puts "I'm a cashed-up hedonist!"
end
end
refine Traveller.singleton_class do
def preferred_accommodation
puts "Expensive Hotels"
end
end
end
Traveller.new.what_are_you #=> I'm a Backpacker
Traveller.preferred_accommodation #=> Hostels
using Money
Traveller.new.what_are_you #=> I'm a cashed-up hedonist!
Traveller.preferred_accommodation #=> Expensive Hotels
另外,通过将上述三个语句放在一个模块中,将两种方法的精化版本限制在该模块中:
module M
using Money
Traveller.new.what_are_you #=> I'm a cashed-up hedonist!
Traveller.preferred_accommodation #=> Expensive Hotels
end
Traveller.new.what_are_you #=> I'm a Backpacker
Traveller.preferred_accommodation #=> Hostels
我正在尝试了解 Ruby 的优化功能,但遇到了一个我不了解的场景。
以这个示例代码为例:
class Traveller
def what_are_you
puts "I'm a Backpacker"
end
def self.preferred_accommodation
puts "Hostels"
end
end
module Refinements
module Money
def what_are_you
puts "I'm a cashed-up hedonist!"
end
module ClassMethods
def preferred_accommodation
puts "Expensive Hotels"
end
end
def self.included(base)
base.extend ClassMethods
end
end
refine Traveller do
include Money
end
end
现在,当我在 REPL 中执行此操作时:
Traveller.new.what_are_you # => I'm a Backpacker
Traveller.preferred_accommodation # => Hostels
using Refinements
Traveller.new.what_are_you # => I'm a cashed-up hedonist!
Traveller.preferred_accommodation # => Hostels (???)
为什么#what_are_you
精化了,而.preferred_accommodation
却没有?
您需要使用 singleton_class 范围调用 refine Traveler 以覆盖 class 方法。通过将以下代码添加到您的 Refinements 模块而不是 self.included
,您可以获得预期的结果。
module Refinements
refine Traveller.singleton_class do
include Money::ClassMethods
end
end
这篇文章(http://timelessrepo.com/refinements-in-ruby)将帮助您更深入地了解Refinements。
正如@MasashiMiyazaki 所解释的那样,您必须优化两个 classes:Traveller
和 Traveller
的单例 class。这实际上可以让您大大简化代码:
module Money
refine Traveller do
def what_are_you
puts "I'm a cashed-up hedonist!"
end
end
refine Traveller.singleton_class do
def preferred_accommodation
puts "Expensive Hotels"
end
end
end
Traveller.new.what_are_you #=> I'm a Backpacker
Traveller.preferred_accommodation #=> Hostels
using Money
Traveller.new.what_are_you #=> I'm a cashed-up hedonist!
Traveller.preferred_accommodation #=> Expensive Hotels
另外,通过将上述三个语句放在一个模块中,将两种方法的精化版本限制在该模块中:
module M
using Money
Traveller.new.what_are_you #=> I'm a cashed-up hedonist!
Traveller.preferred_accommodation #=> Expensive Hotels
end
Traveller.new.what_are_you #=> I'm a Backpacker
Traveller.preferred_accommodation #=> Hostels