In Perl, which of these is the "better" style?
$hash{"string"} or $hash{string}?
In any case, are they functionality identical?
|
2
|
|||||||||||||||||||
|
|
|
From perldata perldoc:
So yes fundamentally identical. However beware of gotchas:
Will show:
My preference is for the bareword... but remember those () or a preceding + (see jrockway's comment and answer) if you're calling a sub ;-) /I3az/ |
||||||||
|
|
|
They're functionally identical, that is until your key has a space or some other non-alphanumeric character in it. Then you have to use the quoted approach. I prefer to not quote and use names that contain alpha_num and the underscore. That lets me get away with not quoting most of the time. |
||||||
|
|
|
The latter format, |
||
|
|
|
|
Out of pedantry, I always quote my string references in a hash. It serves to ensure that I'm not going to have a gotcha[1]. [1]I'm pretty conservative in my Perl coding. |
||||||||||||||
|
|
|
The form without quotes is preferred by most, because it's more concise and uncluttered, as long as the hash key is limited to alphanumerics and the underscore. Also, most any editor with Perl syntax support knows how to highlight these as strings despite them not being within quotes. It should be noted that you can get this behavior not only when using hash keys, but when defining hashes, passing arguments, or even when defining lists when you use
All that said, I started out quoting everything and it's been a hard habit to break. It somehow feels "safer" to quote your hash keys, even after all these years. |
||||
|
|
|
Avoiding the quotes is more idiomatic. Edit to add: Quoting is not the solution to absolute readability. Consider the inconsistency here:
When you never quote strings, the "weird" things are visually different from the plain strings... and it is parsed correctly.
(Stack Overflow's syntax highlighting fucks this up, so try to ignore it.) |
|||
|
|
|
|
You should always $hash{"string"} unless you want $hash{string} |
||
|
|