Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are quotes around hash keys a good practice in Perl?

Tags:

quotes

hash

perl

Is it a good idea to quote keys when using a hash in Perl?

I am working on an extremely large legacy Perl code base and trying to adopt a lot of the best practices suggested by Damian Conway in Perl Best Practices. I know that best practices are always a touchy subject with programmers, but hopefully I can get some good answers on this one without starting a flame war. I also know that this is probably something that a lot of people wouldn't argue over due to it being a minor issue, but I'm trying to get a solid list of guidelines to follow as I work my way through this code base.

In the Perl Best Practices book by Damian Conway, there is this example which shows how alignment helps legibility of a section of code, but it doesn't mention (anywhere in the book that I can find) anything about quoting the hash keys.

$ident{ name   } = standardize_name($name); $ident{ age    } = time - $birth_date; $ident{ status } = 'active'; 

Wouldn't this be better written with quotes to emphasize that you are not using bare words?

$ident{ 'name'   } = standardize_name($name); $ident{ 'age'    } = time - $birth_date; $ident{ 'status' } = 'active'; 
like image 746
cowgod Avatar asked Dec 30 '08 21:12

cowgod


People also ask

Are Perl hashes ordered?

Note that hashes in Perl are not ordered. This means that when you iterate over a hash, you may not extract the values in the same order in which they were inserted. The values stored in a hash can of type integer, float, string, boolean, arrays and hash itself.

What is a hash reference in Perl?

A hash is a basic data type in Perl. It uses keys to access its contents. A hash ref is an abbreviation to a reference to a hash. References are scalars, that is simple values. It is a scalar value that contains essentially, a pointer to the actual hash itself.

How do I read a hash in Perl?

Iterating over hashes: To access the value in a hash user must the know the key associate to that value. If the keys of a hash are not known prior then with the help of keys function, user can get the list of keys and can iterate over those keys.

How do I print all the values of a hash in Perl?

The while/each loop is using for print multiple Perl hash elements. Users can apply the print keyword once and display all hash keys and values. The while/each loop print ordered hash key and value.


2 Answers

Without quotes is better. It's in {} so it's obvious that you are not using barewords, plus it is both easier to read and type (two less symbols). But all of this depends on the programmer, of course.

like image 114
ForYourOwnGood Avatar answered Oct 02 '22 04:10

ForYourOwnGood


When specifying constant string hash keys, you should always use (single) quotes. E.g., $hash{'key'} This is the best choice because it obviates the need to think about this issue and results in consistent formatting. If you leave off the quotes sometimes, you have to remember to add them when your key contains internal hypens, spaces, or other special characters. You must use quotes in those cases, leading to inconsistent formatting (sometimes unquoted, sometimes quoted). Quoted keys are also more likely to be syntax-highlighted by your editor.

Here's an example where using the "quoted sometimes, not quoted other times" convention can get you into trouble:

$settings{unlink-devices} = 1; # I saved two characters! 

That'll compile just fine under use strict, but won't quite do what you expect at runtime. Hash keys are strings. Strings should be quoted as appropriate for their content: single quotes for literal strings, double quotes to allow variable interpolation. Quote your hash keys. It's the safest convention and the simplest to understand and follow.

like image 43
John Siracusa Avatar answered Oct 02 '22 04:10

John Siracusa