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

It is very common in Ruby to see methods that receive a hash of parameters instead of just passing the parameters to the method.

My question is - when do you use parameters for your method and when do you use a parameters hash?

Is it right to say that it is a good practice to use a parameter hash when the method has more than one or two parameters?

link|improve this question

79% accept rate
feedback

5 Answers

I use parameter hashes whenever they represent a set of options that semantically belong together. Any other parameters which are direct (often required) arguments to the function, I pass one by one.

link|improve this answer
1  
+1 - nothing in a parameter hash should be required. Optional parameters could be named, with default values, but I tend to pass them in a hash and set defaults in the method body if needed. – Sarah Mei Aug 28 '09 at 16:56
feedback

You may want to use a hash when there are many optional params, or when you want to accept arbitrary params, as you can see in many rails's methods.

link|improve this answer
feedback

if you have more than 2 arguements. you should start thinking of using hash. This is good practise clearly explained in clean code link text

link|improve this answer
feedback

One obvious use case is when you are overriding a method in a child class, you should use hash parameters for the parent method's parameters for when you call it.

link|improve this answer
feedback

On another note, and this is not only related to Ruby but to all languages:

In APIs which are in flux, it is sometimes useful to declare some or all parameters to a function as a single parameters object (in Ruby these could be hashes, in C structs, and so on), so as to maintain API stability should the set of accepted arguments change in future versions. However, the obvious downside is that readability is drastically reduced, and I would never use this "pattern" unless I'd really really have to.

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.