How do I pass a hash to a function in Perl? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T15:48:05Z http://stackoverflow.com/feeds/question/803808 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl 5 How do I pass a hash to a function in Perl? rlbond 2009-04-29T19:08:34Z 2009-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#803858 23 Answer by Paul Tomblin for How do I pass a hash to a function in Perl? Paul Tomblin 2009-04-29T19:20:45Z 2009-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-&gt;{$_}, "\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#803862 4 Answer by Matt Kane for How do I pass a hash to a function in Perl? Matt Kane 2009-04-29T19:22:17Z 2009-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#803864 9 Answer by chaos for How do I pass a hash to a function in Perl? chaos 2009-04-29T19:22:45Z 2009-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#803871 3 Answer by Gurunandan for How do I pass a hash to a function in Perl? Gurunandan 2009-04-29T19:24:42Z 2009-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 =&gt; 1, b =&gt; 2, c =&gt; 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#803883 8 Answer by Jonathan Leffler for How do I pass a hash to a function in Perl? Jonathan Leffler 2009-04-29T19:26:47Z 2009-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' =&gt; 1, 'bbb' =&gt; 'balls', 'ccc' =&gt; \&amp;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' =&gt; 1, 'bbb' =&gt; 'balls', 'ccc' =&gt; \&amp;PrintAA );</code> versus <code>my %hash = { 'aaa' =&gt; 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#803970 3 Answer by Chris Lutz for How do I pass a hash to a function in Perl? Chris Lutz 2009-04-29T19:47:16Z 2009-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#803975 0 Answer by Berov for How do I pass a hash to a function in Perl? Berov 2009-04-29T19:49:29Z 2009-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-&gt;{somearg} #do something $aa-&gt;{anotherearg} #do something } </code></pre> <p>Call your function like this:</p> <pre><code>printAA($firstarg,somearg=&gt;1, anotherarg=&gt;2) </code></pre> <p>Or like this(no matter):</p> <pre><code>printAA($firstarg,{somearg=&gt;1, anotherarg=&gt;2}) </code></pre> <p>Or even like this(no matter):</p> <pre><code>my(%hash) = ( 'aaa' =&gt; 1, 'bbb' =&gt; 'balls', 'ccc' =&gt; \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#803981 1 Answer by Arnshea for How do I pass a hash to a function in Perl? Arnshea 2009-04-29T19:51:04Z 2009-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 =&gt; "val1", key2 =&gt; "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>