Optional Message Parameters?

(Warning: Newbie Altert!)

How do I write a method with optional params? I would think that this:

def do_this(opt1="", opt2="")
puts opt2
end
do_this(opt2=“This”)

Would result in “This” being displayed. Instead, “This” becomes the
value of opt1. I’d like to set opt1 and opt2 to default to “”. How do I
do that?

Nathan O. wrote:

(Warning: Newbie Altert!)

How do I write a method with optional params? I would think that this:

def do_this(opt1="", opt2="")
puts opt2
end
do_this(opt2=“This”)

Would result in “This” being displayed. Instead, “This” becomes the
value of opt1. I’d like to set opt1 and opt2 to default to “”. How do I
do that?
Use a hash:

def do_this( args )
puts args[:opt2]
end
do_this :opt2=>“This” #=> This

What you’re doing now is assigning to opt2 then passing it:

do_this(opt2=“This”)
puts opt2 #=> “This”

Use a hash:

def do_this( args )
puts args[:opt2]
end
do_this :opt2=>“This” #=> This

What you’re doing now is assigning to opt2 then passing it:

do_this(opt2=“This”)
puts opt2 #=> “This”

I understand that this will work, but seems so inelegant. Is it really
how this is supposed to be done?

On 4/20/06, Nathan O. [email protected] wrote:

Would result in “This” being displayed. Instead, “This” becomes the
value of opt1. I’d like to set opt1 and opt2 to default to “”. How do I
do that?

This is usually a case where you either use * or a hash parameter. *
is good for cases where you can distinguish by value. In your case it
looks like a hash would be appropriate.

def do_this(opts)
puts opt[:two]
end

do_this(:two => “This”)

Notes: The hash parameter will always be the last parameter (ignoring
& args and other odd parameter changes when using super). This means
you can pass many things along side the hash, though the more you add
the more complex it gets to manage the interface. Rails uses this
technique heavily. Have a look at the find() code in ActiveRecord
sometime to learn how they manage such an interface (much cleaner in
more recent releases).

Future major versions of Ruby are going to have actual named
parameters. So much to look forward to in 2.0!

Brian.

Nathan O. wrote:

Use a hash:

def do_this( args )
puts args[:opt2]
end
do_this :opt2=>“This” #=> This

What you’re doing now is assigning to opt2 then passing it:

do_this(opt2=“This”)
puts opt2 #=> “This”

I understand that this will work, but seems so inelegant. Is it really
how this is supposed to be done?

There are default values too:

def do_this( opt1, opt2="" )
puts opt2
end

If that’s what you mean.

Brian M. wrote:

On 4/20/06, Nathan O. [email protected] wrote:

Would result in “This” being displayed. Instead, “This” becomes the
value of opt1. I’d like to set opt1 and opt2 to default to “”. How do I
do that?

This is usually a case where you either use * or a hash parameter. *
is good for cases where you can distinguish by value. In your case it
looks like a hash would be appropriate.

def do_this(opts)
puts opt[:two]
end

do_this(:two => “This”)

*? I don’t even know how I’d google that :slight_smile:

Notes: The hash parameter will always be the last parameter (ignoring
& args and other odd parameter changes when using super). This means
you can pass many things along side the hash, though the more you add
the more complex it gets to manage the interface. Rails uses this
technique heavily. Have a look at the find() code in ActiveRecord
sometime to learn how they manage such an interface (much cleaner in
more recent releases).

Woosh! That was the sound of this discussion going over my head at
Mach 2!

Future major versions of Ruby are going to have actual named
parameters. So much to look forward to in 2.0!

Definitely looking forward to that!

*? I don’t even know how I’d google that :slight_smile:

The star is used to have fun with parameters. Watch:

def have_fun(*args)
args.each{|arg| puts arg}
end

have_fun 1, 2, 3 # outputs 1, 2, 3

It basically takes any additional parameters provided and puts it into
an array (with the exception of blocks):

def some_args( opt1, opt2, *otheropts )
otheropts
end

some_args nil, nil, “have”, “fun” # => [“have”, “fun”]

You can use it the other way to:

arguments = [“Hello”, “world”]
send(“puts”, *arguments) # Outputs the arguments

See http://redhanded.hobix.com/bits/wonderOfTheWhenBeFlat.html for
creative uses.

On 4/20/06, Nathan O. [email protected] wrote:

Would result in “This” being displayed. Instead, “This” becomes the
value of opt1. I’d like to set opt1 and opt2 to default to “”. How do I
do that?

Nathan, looks like you’re expecting Ruby to be like Python, but Ruby
doesn’t have keyword args – it just looks at the order of the stuff
pass in to a method, and assigns them to the method parameters in that
order.

In the method call you show above (do_this(opt2=“This”)), what’s
happening (I think) is that some local variable named opt2 (local to
the arg list?) is being created in your argument list, and then the
string “This” is being assigned to it. Then, after that business is
done being evaluated, that string gets passed into the method where
it’s assigned to parameter opt1.