Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Re: Default subroutine parameters (boo)

by Fletch (Bishop)
on Apr 22, 2002 at 16:59 UTC ( [id://161104]=note: print w/replies, xml ) Need Help??


in reply to Re: Default subroutine parameters (boo)
in thread Default subroutine parameters

sub foo { my %defaults = ( qw( foo 9 bar 8 baz 7 ) ); my %args = ( %defaults, @_ ); ... }

Replies are listed 'Best First'.
Re: Re: Re: Default subroutine parameters (boo)
by thelenm (Vicar) on Apr 23, 2002 at 16:21 UTC
    I really like this solution because it's syntactically simple. It works when an argument is omitted entirely, but unfortunately it doesn't supply the default value when the value 'undef' is passed as an argument, like this:
    mysub(foo => 0, bar => 1, baz => undef); sub mysub { my %defaults = qw(foo 9 bar 8 baz 7); my %args = (%defaults, @_); print "Foo: $args{foo}, Bar: $args{bar}, Baz: $args{baz}\n"; }

    But it's inspired me to see if I can modify it to suit my needs. Thank you!

      It doesn't supply a default because you've supplied a value (undef). If you want the default, don't supply something with that key as a parameter. You're presuming an idiom `replace undef parameters with the default value' where this code implements `replace unspecified parameters with the default value'.

        You're presuming an idiom `replace undef parameters with the default value'

        Right, that was the question I asked. :-)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://161104]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (7)
As of 2024-03-28 10:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found