Of course, you can yield
from within initialize
, there's nothing special about it:
class Foo
attr_accessor :bar, :baz
def initialize
yield self
end
end
Foo.new do |f|
f.bar = 123
f.baz = 456
end
#=> <Foo:0x007fed8287b3c0 @bar=123, @baz=456>
You could also evaluate the block in the context of the receiver using instance_eval
:
class Foo
attr_accessor :bar, :baz
def initialize(&block)
instance_eval(&block)
end
end
Foo.new do
@bar = 123
@baz = 456
end
#=> #<Foo:0x007fdd0b1ef4c0 @bar=123, @baz=456>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…