Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

RE: Default values in functions arguments

by runrig (Abbot)
on Sep 28, 2000 at 01:53 UTC ( [id://34285]=note: print w/replies, xml ) Need Help??


in reply to Default values in functions arguments

What you have should work for what you describe, but it seems more like you are passing in a 'VALUE2' key with an undef value. If that's the case, then this may help:
#!/usr/local/bin/perl -w use strict; my %hsh = (a=>1,c=>3,d=>undef); my %hsh1 = myfunc(%hsh); while (my ($key, $value) = each %hsh1) { print "$key=$value\n"; } sub myfunc { my %hsh = @_; my %dflt_values = (a=>0,b=>0,c=>0,d=>0); $hsh{$_} = $dflt_values{$_} for grep { not defined $hsh{$_} } keys %d +flt_values; %hsh; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-19 05:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found