以下是Why's Poignant Guide to Ruby Chapter 6中的一段 Ruby 代码片段,他试图在其中演示 Ruby 中的元编程:
# Get a metaclass for this class
def self.metaclass; class << self; self; end; end
我对 Ruby 不太熟悉,但这就是它在扩展形式中的样子吗?
def self.metaclass
def self.self
end
end
至少我是这么理解的。但是,它仍然不完全理解这段代码的作用。它的目的是什么?
进一步在代码中,为什么添加这个:
arr.each do |a|
metaclass.instance_eval do
define_method( a ) do |val|
@traits ||= {}
@traits[a] = val
end
end
end
如果我理解正确,这段代码会使用给定的名称和值向@traits 添加一个新值。那是对的吗?
感谢您的帮助,这是给我带来麻烦的完整源代码,任何想看的人都可以:
# The guts of life force within Dwemthy's Array
class Creature
# Get a metaclass for this class
def self.metaclass; class << self; self; end; end
# Advanced metaprogramming code for nice, clean traits
def self.traits( *arr )
return @traits if arr.empty?
# 1. Set up accessors for each variable
attr_accessor *arr
# 2. Add a new class method to for each trait.
arr.each do |a|
metaclass.instance_eval do
define_method( a ) do |val|
@traits ||= {}
@traits[a] = val
end
end
end
# 3. For each monster, the `initialize' method
# should use the default number for each trait.
class_eval do
define_method( :initialize ) do
self.class.traits.each do |k,v|
instance_variable_set("@#{k}", v)
end
end
end
end
# Creature attributes are read-only
traits :life, :strength, :charisma, :weapon
end
在使用中:
class Dragon < Creature
life( 1340 ) # tough scales
strength( 451 ) # bristling veins
charisma( 1020 ) # toothy smile
weapon( 939 ) # fire breath
end