Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to assign the reference of an array as the value in the key : value pair of a hash table in perl?

share|improve this question
1  
Have a look at the data structures cookbook. – mpe Dec 20 '12 at 9:46

2 Answers

up vote 10 down vote accepted

Yes it is. Create a reference to the array by using backslash:

$hash{key} = \@array;

Note that this will link to the actual array, so if you perform a change such as:

$array[0] = "foo";

That will also mean that $hash{key}[0] is set to "foo".

If that is not what you want, you may copy the values by using an anonymous array reference [ ... ]:

$hash{key} = [ @array ];

Moreover, you don't have to go through the array in order to do this. You can simply assign directly:

$hash{key} = [ qw(foo bar baz) ];

Read more about making references in perldoc perlref

share|improve this answer
maybe some words about autovivification?:) it is good to know for beginner – loldop Dec 20 '12 at 9:58
@loldop Well, yes, many things are good to know for a beginner, however, here we are not talking about autovivification, just simple scalar values being assigned. – TLP Dec 20 '12 at 11:16
I think you meant "eq 'foo'" not "== 'foo'" – mswanberg Dec 20 '12 at 22:54

Yes. See http://perlmonks.org/?node=References+quick+reference for some basic rules for accessing such data structures, but to create it, just do one of these:

%hash = ( 'somekey' => \@arrayvalue );
$hash{'somekey'} = \@arrayvalue;
%hash = ( 'somekey' => [ ... ] );
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.