是时候缩短时间了:
class Foo
attr_accessor :a, :b, :c, :d, :e
def initialize(a, b, c, d, e)
@a = a
@b = b
@c = c
@d = d
@e = e
end
end
我们有'attr_accessor'来生成getter和setter。
我们有什么要按属性生成初始值设定项吗?
答案 0 :(得分:13)
最简单的:
Foo = Struct.new( :a, :b, :c )
生成访问器和初始化器。您可以使用以下方式进一步自定义课程:
Foo = Struct.new( … ) do
def some_method
…
end
end
答案 1 :(得分:2)
我们可以创建类似def_initializer
的内容:
# Create a new Module-level method "def_initializer"
class Module
def def_initializer(*args)
self.class_eval <<END
def initialize(#{args.join(", ")})
#{args.map { |arg| "@#{arg} = #{arg}" }.join("\n")}
end
END
end
end
# Use it like this
class Foo
attr_accessor :a, :b, :c, :d
def_initializer :a, :b, :c, :d
def test
puts a, b, c, d
end
end
# Testing
Foo.new(1, 2, 3, 4).test
# Outputs:
# 1
# 2
# 3
# 4
答案 2 :(得分:1)
您可以使用像constructor这样的宝石。从描述:
声明意味着通过将哈希传递给构造函数来定义对象属性,构造函数将设置相应的ivars。
很容易使用:
Class Foo
constructor :a, :b, :c, :d, :e, :accessors => true
end
foo = Foo.new(:a => 'hello world', :b => 'b',:c => 'c', :d => 'd', :e => 'e')
puts foo.a # 'hello world'
如果您不想使用访问者生成的ivars,可以不使用:accessors =&gt;真
希望这会有所帮助 / Salernost
答案 3 :(得分:0)
class Foo
class InvalidAttrbute < StandardError; end
ACCESSORS = [:a, :b, :c, :d, :e]
ACCESSORS.each{ |atr| attr_accessor atr }
def initialize(args)
args.each do |atr, val|
raise InvalidAttrbute, "Invalid attribute for Foo class: #{atr}" unless ACCESSORS.include? atr
instance_variable_set("@#{atr}", val)
end
end
end
foo = Foo.new(a: 1)
puts foo.a
#=> 1
foo = Foo.new(invalid: 1)
#=> Exception
答案 4 :(得分:0)
class Module
def initialize_with( *names )
define_method :initialize do |*args|
names.zip(args).each do |name,val|
instance_variable_set :"@#{name}", val
end
end
end
end