Optional Arguments with Default Value in Ruby

Optional arguments with default value in Ruby

You cannot do that (or something similar) in Ruby < 2.0. The best you could do is:

def my_function(h = {})
h[:c] ||= 500
# Use h[:a], h[:b], h[:c]
...
end

my_function(b: 100)

How can I inspect what is the default value for optional parameter in ruby's method?

I think the reason such utility is not made available is that the values of the default arguments are evaluated when they have to be assigned. Therefore, trying to evaluate them might have side additional effects.


Let me tell you a story about the Russian government's nuclear plans:

Some time ago, they hired ultra hardcore Russian hackers to come up with a a solution that is both error-proof and mega secure that allows to either launch all available nukes or simply run a simulation. They decided to create one method called launch_all_nukes, which optionally accepts a keyword argument simulation_number:. They loaded the implementation in a REPL and deleted the code so enemy spies could never find out how it actually works.


Each day for the past couple of years, the trusted specialist Ivan travels to a giga secret location where he sits in front of what looks to be a regular irb and evaluates the chances of the Russian Federation surviving a supposed mutual assured destruction.

$: launch_all_nukes simulation_number: 1

...

Just another regular day.

$: launch_all_nukes simulation_number: 2

...

$: launch_all_nukes simulation_number: 3

...

Even though these take 25 minutes on average, it feels like hours sometimes.

$: launch_all_nukes simulation_number: 4

...

Staring at the screen. Just another regular day. Another... regular... day...

$: launch_all_nukes simulation_number: 5

...

Tik-tok, tik-tok, tik-tok... Wondering what might there be for lunch?

$: launch_all_nukes simulation_number: 6

...

Finally! 7 is always the most interesting. It's the only one that sometimes shows there is a 0.03% - 0.08% chance of not complete annihilation. Ivan has no idea what stands behind the number 7. Or any of the other simulations for that matter. He just runs commands and waits. But surely, number 7 is the one that brings little beams of joy and excitement in his otherwise dull assignment.
Aaaaaaand, go!

$: launch_all_nukes simulation_number: 7

...

0%. As all the others. How regular.

$: launch_all_nukes simulation_number: 8

...

Does it matter, actually? Why would one nation be superior to all the others? Is human life valuable by itself to begin with? Is Earth as a whole inherently valuable? Just a tiny spectacle of rock floating in an endless Universe...

$: launch_all_nukes simulation_number: 9

...

What happened? Ivan used to be a great developer. And now he just stares at a console, running repetitive commands from time to time... Is this what progress feels like...

$: launch_all_nukes simulation_number: 10

...

Wait a second... What is the default value of simulation_number:? What is it? Surely, the implementation has some check like __actually_launch_nukes__ if simulation_number.nil?. But is it really nil? Or is it something else? ...

$: launch_all_nukes simulation_number: 11

...

Like a repetitive earworm, this tiny question never left his mind... what is it? ... He never feared accidentally endangering the world because he saw that running launch_all_nukes with no arguments prompts for three different access keys, none of which he knows.

$: launch_all_nukes simulation_number: 12

...

Ivan has ran ordinary Ruby commands in the console before. By all means, it's just a regular irb... Just running one simple introspection method... He knows he is not allowed to do it... But no one will know, right? No one even knows how this program works anyway... Ah...

$: launch_all_nukes simulation_number: 13

...

13 and 14 are the worst! 13 usually takes an hour and a half. 14 is even longer. Damn it, Ivan craves, just an itsy bitsy tiny information to keep his mind engaged for at least a couple of minutes... Lets do it!

$: method(:launch_all_nukes).default_value_for(:simulation_number)

...

Mortified, Ivan froze motionless as the sudden realization hit him. He now knows what the default value is. But it is too late...


Here is a poor man's attempt:

argument_name = 'arg2'

origin_file, definition_line = MyClass.instance_method(:index).source_location
method_signature = IO.readlines(origin_file)[definition_line.pred]
eval(method_signature.match(/#{argument_name}\s*[=:]\s*\K[^\s),]*/)[0]) # => "hello"

Obviously very error prone:

  • Doesn't work with native methods
  • Doesn't work with methods defined in REPLs
  • You need read privileges
  • The regex doesn't handle many cases (like more complex default values that have whitespaces, ) or , in them), but this can be improved.

If someone comes up with a purely introspective solution, go with that.

A method with an optional parameter


def some_func(variable = nil)
...
end

Ruby automatically add argument when wrong number of arguments appears

You don't need to, you need to use default arguments, like this:

def prefill(n, v = nil)
# code
end

Rails optional argument

It's as simple as this:

class Person
attr_accessor :name, :age

def initialize(name = '', age = 0)
self.name = name
self.age = age
end
end


Person.new('Ivan', 20)
Person.new('Ivan')

However, if you want to pass only age, the call would look pretty ugly, because you have to supply blank string for name anyway:

Person.new('', 20)

To avoid this, there's an idiomatic way in Ruby world: options parameter.

class Person
attr_accessor :name, :age

def initialize(options = {})
self.name = options[:name] || ''
self.age = options[:age] || 0
end
end

Person.new(name: 'Ivan', age: 20)
Person.new(age: 20)
Person.new(name: 'Ivan')

You can put some required parameters first, and shove all the optional ones into options.

Edit

It seems that Ruby 2.0 will support real named arguments.

def example(foo: 0, bar: 1, grill: "pork chops")
puts "foo is #{foo}, bar is #{bar}, and grill is #{grill}"
end

# Note that -foo is omitted and -grill precedes -bar
example(grill: "lamb kebab", bar: 3.14)

Dealing with 3 or more default arguments Ruby

Using keyword arguments?

def foo(a: 1, b: 2, c: 3)
puts [a, b, c]
end

foo(a: 5, c: 7)


Related Topics



Leave a reply



Submit