Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^5: Hash assignments using map

by shmem (Chancellor)
on Feb 24, 2007 at 20:32 UTC ( [id://601914]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Hash assignments using map
in thread Hash assignments using map

All I want access to is the keys...
ok, but a hash has a key and a value. So your code should be:
my @keys = qw{ a b c d }; my %hash = map { $_,1 } @keys;
if you want your keys unaltered. If you want a "string increment" ($_="a";$_++; # $_ is b now) its ok to use $_++.

In the loop

my %hash; foreach ( @keys ) { $hash{$_}++; }

you are also using two variables - in a shortcut:

  1. you create a new hash slot with key $_
  2. you increment (the previously undefined) value for that key

So, it's the same thing with keys and values here. With map iterating over an array of keys, you must provide a value to have pairs to be stored as (key,value) in a hash.

--shmem

_($_=" "x(1<<5)."?\n".q·/)Oo.  G°\        /
                              /\_¯/(q    /
----------------------------  \__(m.====·.(_("always off the crowd"))."·
");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://601914]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (2)
As of 2024-04-26 00:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found