How do I pass a hash to a function in Perl? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T15:48:05Zhttp://stackoverflow.com/feeds/question/803808http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl5How do I pass a hash to a function in Perl?rlbond2009-04-29T19:08:34Z2009-08-04T23:28:18Z
<p>I am having a lot of trouble. I have a function that takes a variable and an associative array, but I can't seem to get them to pass right. I think this has something to do with function declarations, however I can't figure out how they work in Perl. Does anyone know a good reference for this and how to accomplish what I need?
I should add that it needs to be passed by reference.</p>
<pre><code>sub PrintAA
{
my $test = shift;
my %aa = shift;
print $test . "\n";
foreach (keys %aa)
{
print $_ . " : " . $aa{$_} . "\n";
$aa{$_} = $aa{$_} . "+";
}
}
</code></pre>
http://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl/803858#80385823Answer by Paul Tomblin for How do I pass a hash to a function in Perl?Paul Tomblin2009-04-29T19:20:45Z2009-04-29T20:45:23Z<p>Pass the reference instead of the hash itself. As in</p>
<pre><code>PrintAA("abc", \%fooHash);
sub PrintAA
{
my $test = shift;
my $aaRef = shift;
print $test, "\n";
foreach (keys %{$aaRef})
{
print $_, " : ", $aaRef->{$_}, "\n";
}
}
</code></pre>
<p>See also perlfaq7: <a href="http://perldoc.perl.org/perlfaq7.html#How-can-I-pass%2freturn-a-%7bFunction%2c-FileHandle%2c-Array%2c-Hash%2c-Method%2c-Regex%7d%3f" rel="nofollow">How can I pass/return a {Function, FileHandle, Array, Hash, Method, Regex}?</a></p>
http://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl/803862#8038624Answer by Matt Kane for How do I pass a hash to a function in Perl?Matt Kane2009-04-29T19:22:17Z2009-04-29T19:22:17Z<p>Looks like you should pass in a reference to a hash.</p>
<pre><code>sub PrintAA
{
my $test = shift;
my $aa = shift;
if (ref($aa) != "HASH") { die "bad arg!" }
....
}
PrintAA($foo, \%bar);
</code></pre>
<p>The reason you can't do a </p>
<pre><code>my %aa = shift;
</code></pre>
<p>is because perl flattens all the arguments to a subroutine into one list, @_. Every element is copied, so passing in by reference avoids those copies as well.</p>
http://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl/803864#8038649Answer by chaos for How do I pass a hash to a function in Perl?chaos2009-04-29T19:22:45Z2009-08-04T23:28:18Z<p>Alternatively:</p>
<pre><code>sub PrintAA
{
my $test = shift;
my %aa = @_;
print $test . "\n";
foreach (keys %aa)
{
print $_ . " : " . $aa{$_} . "\n";
$aa{$_} = $aa{$_} . "+";
}
}
</code></pre>
<p>The thing you're fundamentally missing is that an associative array isn't a single argument (though an associative array reference is, as in Paul Tomblin's answer).</p>
http://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl/803871#8038713Answer by Gurunandan for How do I pass a hash to a function in Perl?Gurunandan2009-04-29T19:24:42Z2009-04-29T19:24:42Z<p>As usual there are several ways. Here is what "Perl - Best Practices", that most revered of Style Pointers, has to say about passing parameters to functions: </p>
<p><em>Use a hash of named arguments for any subroutine that has more than three parameters</em></p>
<p>But since you have only two, you could get away ;) with passing them directly like this:</p>
<pre><code>my $scalar = 5;
my %hash = (a => 1, b => 2, c => 3);
func($scalar, %hash)
</code></pre>
<p>And function is defined like this: </p>
<pre><code>sub func {
my $scalar_var = shift;
my %hash_var = @_;
... Do something ...
}
</code></pre>
<p>I could be more useful if you could show some code</p>
http://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl/803883#8038838Answer by Jonathan Leffler for How do I pass a hash to a function in Perl?Jonathan Leffler2009-04-29T19:26:47Z2009-04-29T22:01:40Z<p>This code works:</p>
<pre><code>#!/bin/perl -w
use strict;
sub PrintAA
{
my($test, %aa) = @_;
print $test . "\n";
foreach (keys %aa)
{
print $_ . " : " . $aa{$_} . "\n";
}
}
my(%hash) = ( 'aaa' => 1, 'bbb' => 'balls', 'ccc' => \&PrintAA );
PrintAA("test", %hash);
</code></pre>
<p>The key point is the use of the array context in the my() 'statement' in the function.</p>
<p><hr></p>
<blockquote>
<p>What does the array context business actually do?</p>
</blockquote>
<p>Succinctly, it makes it work correctly.</p>
<p>It means that the first value in the <code>@_</code> array of arguments is assigned to <code>$test</code>, and the remaining items are assigned to the hash <code>%aa</code>. Given the way I called it, there is an odd number of items in the <code>@_</code>, so once the first item is assigned to <code>$test</code>, there is an even number of items available to assign to <code>%aa</code>, with the first item of each pair being the key ('aaa', 'bbb', 'ccc' in my example), and the second being the corresponding value.</p>
<p>It would be possible to replace <code>%aa</code> with <code>@aa</code>, in which case, the array would have 6 items in it. It would also be possible to replace <code>%aa</code> with <code>$aa</code>, and in that case, the variable <code>$aa</code> would contain the value 'aaa', and the remaining values in <code>@_</code> would be ignored by the assignment.</p>
<p>If you omit the parentheses around the variable list, Perl refuses to compile the code.
One of the alternative answers showed the notation:</p>
<pre><code>my $test = shift;
my(%aa) = @_;
</code></pre>
<p>This is pretty much equivalent to what I wrote; the difference is that after the two <code>my</code> statements, <code>@_</code> only contains 6 elements in this variation, whereas in the single <code>my</code> version, it still contains 7 elements.</p>
<p>There are definitely other questions in <a href="http://stackoverflow.com/questions/376921/what-is-the-difference-between-the-scalar-and-list-contexts-in-perl">SO</a> about array context.</p>
<p><hr></p>
<blockquote>
<p>Actually, I wasn't asking about the <code>my($test, %aa) = @_;</code> I was asking about <code>my(%hash) = ( 'aaa' => 1, 'bbb' => 'balls', 'ccc' => \&PrintAA );</code> versus <code>my %hash = { 'aaa' => 1, ... };</code></p>
</blockquote>
<p>The difference is that the { ... } notation generates a hash ref and the ( ... ) notation generates a list, which maps to a hash (as opposed to hash ref). Similarly, [ ... ] generates an array ref and not an array.</p>
<p>Indeed, change the 'main' code so it reads: my(%hash) = { ... }; and you get a run-time (but not compile time) error - treat line numbers with caution since I've added alternative codings to my file:</p>
<pre><code>Reference found where even-sized list expected at xx.pl line 18.
...
Use of uninitialized value in concatenation (.) or string at xx.pl line 13.
</code></pre>
http://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl/803970#8039703Answer by Chris Lutz for How do I pass a hash to a function in Perl?Chris Lutz2009-04-29T19:47:16Z2009-04-29T20:51:55Z<p>All the above methods work, but this was always the way I preferred to do things like this:</p>
<pre><code>sub PrintAA ($\%)
{
my $test = shift;
my %aa = ${shift()};
print "$test\n";
foreach (keys %aa)
{
print "$_ : $aa{$_}\n";
$aa{$_} = "$aa{$_}+";
}
}
</code></pre>
<p>Note: I also changed your code a bit. Perl's double-quoted strings will interpret <code>"$test"</code> to be the value of <code>$test</code> rather than the actual string <code>'$test'</code>, so you don't need that many <code>.</code>s.</p>
<p>Also, I was wrong about how the prototypes work. To pass a hash, use this:</p>
<pre><code>PrintAA("test", %hash);
</code></pre>
<p>To print a hash reference, use this:</p>
<pre><code>PrintAA("test", %$ref_to_hash);
</code></pre>
<p>Of course, now you can't modify the hash referenced by <code>$ref_to_hash</code> because you're sending a copy, but you can modify a raw <code>%hash</code> because you're passing it as a reference.</p>
http://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl/803975#8039750Answer by Berov for How do I pass a hash to a function in Perl?Berov2009-04-29T19:49:29Z2009-04-29T19:49:29Z<p>Use the folowing sub to get hash or hashref - whatever passed :) </p>
<pre><code>sub get_args { ref( $_[0] ) ? shift() : ( @_ % 2 ) ? {} : {@_}; }
sub PrintAA
{
my $test = shift;
my $aa = get_args(@_);;
#then
$aa->{somearg} #do something
$aa->{anotherearg} #do something
}
</code></pre>
<p>Call your function like this:</p>
<pre><code>printAA($firstarg,somearg=>1, anotherarg=>2)
</code></pre>
<p>Or like this(no matter):</p>
<pre><code>printAA($firstarg,{somearg=>1, anotherarg=>2})
</code></pre>
<p>Or even like this(no matter):</p>
<pre><code>my(%hash) = ( 'aaa' => 1, 'bbb' => 'balls', 'ccc' => \PrintAA );
PrintAA("test", %hash);
</code></pre>
<p>Cheers!</p>
http://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl/803981#8039811Answer by Arnshea for How do I pass a hash to a function in Perl?Arnshea2009-04-29T19:51:04Z2009-04-29T19:51:04Z<p>Arguments to functions get flattened into a single array (@_). So it's usually easiest to pass hashes to function by reference.</p>
<p>To create a HASH:</p>
<pre><code>my %myhash = ( key1 => "val1", key2 => "val2" );
</code></pre>
<p>To create a reference to that HASH:</p>
<pre><code>my $href = \%myhash
</code></pre>
<p>To access that hash by reference;</p>
<pre><code>%$href
</code></pre>
<p>So in your sub:</p>
<pre><code>my $myhref = shift;
keys %$myhref;
</code></pre>