Is it possible to assign the reference of an array as the value in the key : value pair of a hash table in perl?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Yes it is. Create a reference to the array by using backslash:
Note that this will link to the actual array, so if you perform a change such as:
That will also mean that If that is not what you want, you may copy the values by using an anonymous array reference
Moreover, you don't have to go through the array in order to do this. You can simply assign directly:
Read more about making references in perldoc perlref |
||||
|
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:
|
||||
|
|