Hello,
How can I create an anonymous hash from an existing hash?
For arrays, I use:
@x = (1, 2, 3);
my $y = [@x];
but I can't find how to do the same for a hash:
my %x = ();
my $y = ???;
Thanks
|
1
|
|||||||
|
|
|
Note that this solution does not make a deep copy. Read brian's answer for explanation. |
||||||
|
|
|
Why do you need an anonymous hash? Although the answers tell you various ways you could make an anonymous hash, we have no idea if any of them are the right solution for whatever you are trying to do. If you want a distinct copy that you can modify without disturbing the original data, use
Consider Dave Webb's answer, but with an additional layer of references. The value for the key of
By inspecting the output, you see that even though you have an anonymous hash, it's still linked to the original:
|
||
|
|
|
I think you need to be careful here. Consider the following hash:
There are two ways you can get a reference from this:
So, for example, to start with both of these statements will have the same output
But if I change the original hash:
They two
|
||
|
|
|
If you have
then you can do
|
||||||
|
|
|
There seem to be two things going on here, and the answers are split between answering two different possible questions.
If you want 1, do this:
If you want 2, do this:
(The names are not meant for prime time.) My copy isn't ready for prime time either. See brian's post for a fuller, more precise discussion. |
||||
|
|
|
Use:
|
||
|
|
|
|
A quick/easy way to achieve a deep copy:
|
||
|
|