up vote 5 down vote favorite
4
share [g+] share [fb]

In ruby, I often find myself writing the following:

class Foo
  def initialize(bar, baz)
    @bar = bar
    @baz = baz
  end

  << more stuff >>

end

or even

class Foo
  attr_accessor :bar, :baz

  def initialize(bar, baz)
    @bar = bar
    @baz = baz
  end

  << more stuff >>

end

I'm always keen to minimise boilerplate as much as possible - so is there a more idiomatic way of creating objects in ruby?

link|improve this question

74% accept rate
feedback

6 Answers

One option is that you can inherit your class definition from Struct:

class Foo < Struct.new(:bar, :baz)
  # << more stuff >>
end

f = Foo.new("bar value","baz value")
f.bar #=> "bar value"
f.baz #=> "baz value"
link|improve this answer
2  
Instead of subclassing you can also do Foo = Struct.new(:bar, :baz) do ... end – sepp2k Nov 22 '09 at 13:38
Can you provide an example, sepp2k? – Tempus Nov 22 '09 at 15:56
1  
Interesting... but what if you want Foo to subclass something else? – grifaton Jan 19 '10 at 23:39
It's worth noting that a Struct isn't exactly same as just a bunch of macros that do all the boilerplate class stuff for you. – Benjamin Oakes Jan 29 '10 at 15:30
feedback

I asked a duplicate question, and suggested my own answer there, expecting for a better one, but a satisfactory one did not appear. I will post my own one.

Define a class method like the following along the spirit of attr_accessor, attr_reader, attr_writer methods.

class Class
    def attr_constructor *vars
        define_method("initialize") do |*vals|
            vars.zip(vals){|var, val| instance_variable_set("@#{var}", val)}
        end
    end
end

Then, you can use it like this:

class Foo
    attr_constructor :foo, :bar, :buz
end

p Foo.new('a', 'b', 'c')      # => #<Foo:0x93f3e4c @foo="a", @bar="b", @buz="c">
p Foo.new('a', 'b', 'c', 'd') # => #<Foo:0x93f3e4d @foo="a", @bar="b", @buz="c">
p Foo.new('a', 'b')           # => #<Foo:0x93f3e4e @foo="a", @bar="b", @buz=nil>
link|improve this answer
Interesting, I like it! – grifaton Oct 24 '11 at 9:56
@grifaton Thanks. – sawa Oct 24 '11 at 14:18
feedback

I must say, I prefer sending a hash to the 'new' call to initialise some or all attributes.

But then again, I spend most of my Ruby coding time in the Rails world, and this is kind of idiomatic due to the ActiveRecord (an ORM in Rails) implementation.

I like the clarity, simplicity and flexibility of being able to initialise an object with some or all attributes with specified values. For e.g. like the below:

 me = Person.new :name=> 'Dara'

or

 me = Person.new :name => 'Dara', :does => 'hiking'

or

 me = Person.new :name => 'Dara', :does => 'hiking', :drinks => 'Weihenstephaner'

for a Person class defined as :

class Person
  attr_accessor :name, :does, :drinks

  def initialize(attrs = {}, *args)
    super(*args)
    attrs.each do |k,v|
      self.send "#{k}=", v
    end
  end
end  

An explanation of this specific 'initialize' call code was asked for and provided in question Calling self.send iteratively on a hash argument to initialize()

You can easily paste this into the great 'irb' or Rails console to test it out.

link|improve this answer
feedback

Struct

Struct object's are classes which do almost what you want. The only difference is, the initialize method has nil as default value for all it's arguments. You use it like this

A= Struct.new(:a, :b, :c)

or

class A < Struc.new(:a, :b, :c)
end

Struct has one big drawback. You can not inherit from another class.

Write your own attribute specifier

You could write your own method to specify attributes

def attributes(*attr)
  self.class_eval do
    attr.each { |a| attr_accessor a }
    class_variable_set(:@@attributes, attr)

      def self.get_attributes
        class_variable_get(:@@attributes)
      end

      def initialize(*vars)
        attr= self.class.get_attributes
        raise ArgumentError unless vars.size == attr.size
        attr.each_with_index { |a, ind| send(:"#{a}=", vars[ind]) }
        super()
      end
  end
end

class A
end

class B < A
  attributes :a, :b, :c
end

Now your class can inherit from other classes. The only drawback here is, you can not get the number of arguments for initialize. This is the same for Struct.

B.method(:initialize).arity # => -1
link|improve this answer
feedback

I sometimes do

@bar, @baz = bar, baz

Still boilerplate, but it only takes up one line.

I guess you could also do

["bar", "baz"].each do |variable_name|
  instance_variable_set(:"@#{variable_name}", eval(variable_name))
end

(I'm sure there's a less dangerous way to do that, mind you)

https://bugs.ruby-lang.org/issues/5825 is a proposal to make the boilerplate less verbose.

link|improve this answer
feedback

You could use an object as param.

class Foo
  attr_accessor :param

  def initialize(p)
    @param = p
  end
end

f = Foo.new
f.param.bar = 1
f.param.bax = 2

This does not save much lines in this case but it will if your class has to handle a large number of param. You could also implement a set_param and get_param method if you want to keep your @param var private.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.