Is there any way to use a "constant" as hash key in Perl? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T09:04:15Z http://stackoverflow.com/feeds/question/96848 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl 4 Is there any way to use a "constant" as hash key in Perl? Jagmal 2008-09-18T20:54:25Z 2008-10-08T07:10:30Z <p>Is there any way to use a constant as a hash key?</p> <p>For example:</p> <pre><code>use constant X =&gt; 1; my %x = (X =&gt; 'X'); </code></pre> <p>The above code will create a hash with "X" as key and not 1 as key. Whereas, I want to use the value of constant X as key.</p> http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/96869#96869 14 Answer by nohat for Is there any way to use a "constant" as hash key in Perl? nohat 2008-09-18T20:57:00Z 2008-09-18T20:57:00Z <p><code>use constant</code> actually makes constant subroutines.</p> <p>To do what you want, you need to explicitly call the sub:</p> <pre><code>use constant X =&gt; 1; my %x = ( &amp;X =&gt; 'X'); </code></pre> <p>or</p> <pre><code>use constant X =&gt; 1; my %x = ( X() =&gt; 'X'); </code></pre> http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/96877#96877 8 Answer by cjm for Is there any way to use a "constant" as hash key in Perl? cjm 2008-09-18T20:57:32Z 2008-09-18T21:05:56Z <p>Your problem is that => is a magic comma that automatically quotes the word in front of it. So what you wrote is equivalent to ('X', 'X').</p> <p>The simplest way is to just use a comma:</p> <pre><code>my %x = (X, 'X'); </code></pre> <p>Or, you can add various punctuation so that you no longer have a simple word in front of the =>:</p> <pre><code>my %x = ( X() =&gt; 'X' ); my %x = ( &amp;X =&gt; 'X' ); </code></pre> http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/96885#96885 2 Answer by Arkadiy for Is there any way to use a "constant" as hash key in Perl? Arkadiy 2008-09-18T20:58:17Z 2008-09-18T20:58:17Z <p>=> operator interprets its left side as a "string", the way qw() does.</p> <p>Try using </p> <pre><code>my %x = ( X, 'X'); </code></pre> http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/96888#96888 2 Answer by Frosty for Is there any way to use a "constant" as hash key in Perl? Frosty 2008-09-18T20:58:25Z 2008-09-18T20:58:25Z <p>One way is to encapsulate X as (X):</p> <pre><code>my %x ( (X) =&gt; 1 ); </code></pre> <p>Another option is to do away with '=>' and use ',' instead:</p> <pre><code>my %x ( X, 1 ); </code></pre> http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/96902#96902 4 Answer by Chris for Is there any way to use a "constant" as hash key in Perl? Chris 2008-09-18T21:00:09Z 2008-09-18T21:00:09Z <p>Use $hash{CONSTANT()} or $hash{+CONSTANT} to prevent the bareword quoting mechanism from kicking in.</p> <p>From: <a href="http://perldoc.perl.org/constant.html" rel="nofollow">http://perldoc.perl.org/constant.html</a></p> http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/97019#97019 12 Answer by shelfoo for Is there any way to use a "constant" as hash key in Perl? shelfoo 2008-09-18T21:11:07Z 2008-09-18T21:11:07Z <p>Another option is to not use the use constant pragma and flip to Readonly as per recommendations in the Perl Best Practices by Damian Conway.</p> <p>I switched a while back after realizing that constant hash ref's are just a constant reference to the hash, but don't do anything about the data inside the hash.</p> <p>The readonly syntax creates "normal looking" variables, but will actually enforce the constantness or readonlyness. You can use it just like you would any other variable as a key.</p> <pre> <code> use Readonly; Readonly my $CONSTANT => 'Some value'; $hash{$CONSTANT} = 1; </code> </pre> http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/97035#97035 0 Answer by Jagmal for Is there any way to use a "constant" as hash key in Perl? Jagmal 2008-09-18T21:13:07Z 2008-09-18T21:13:07Z <p>Now, that was very very quick. Maybe, I should have googled a bit but S-O is making me a little bit lazier.</p> <p>Thanks a lot. I would love to accept all answers but there can only be one correct answer and I will accept nohat's answer (as it was the first).</p> http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/97070#97070 3 Answer by Michael Carman for Is there any way to use a "constant" as hash key in Perl? Michael Carman 2008-09-18T21:16:26Z 2008-09-18T21:16:26Z <p>The <code>use constant</code> pragma creates a subroutine prototyped to take no arguments. While it <em>looks</em> like a C-style constant, it's really a subroutine that returns a constant value.</p> <p>The <code>=&gt;</code> (fat comma) automatically quotes left operand if its a bareword, as does the $hash{key} notation.</p> <p>If your use of the constant name looks like a bareword, the quoting mechanisms will kick in and you'll get its name as the key instead of its value. To prevent this, change the usage so that it's not a bareword. For example:</p> <pre><code>use constant X =&gt; 1; %hash = (X() =&gt; 1); %hash = (+X =&gt; 1); $hash{X()} = 1; $hash{+X} = 1; </code></pre> <p>In initializers, you could also use the plain comma instead:</p> <pre><code>%hash = (X, 1); </code></pre> http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/97440#97440 5 Answer by jjohn for Is there any way to use a "constant" as hash key in Perl? jjohn 2008-09-18T22:00:14Z 2008-09-18T22:00:14Z <p>Most of the other folks have answered your questioned well. Taken together, these create a very full explanation of the problem and recommended workarounds. The problem is that the Perl pragma "use constant" really creates a subroutine in your current package whose name is the the first argument of the pragma and whose value is the last.</p> <p>In Perl, once a subroutine is declared, it may be called without parens.</p> <p>Understanding that "constants" are simply subroutines, you can see why they are not interpolated in strings and why the "fat comma" operator "=>" which quotes the left-hand argument thinks you've handed it a string (try other built-in functions like time() and keys() sometime with the fat comma for extra fun). </p> <p>Luckily, you may invoke the constant using explicit punctuation like parens or the ampersand sigil.</p> <p>However, I've got a question for you: why are you using constants for hash keys at all? </p> <p>I can think of a few scenarios that might lead you in this direction:</p> <ol> <li><p>You want control over which keys can be in the hash.</p></li> <li><p>You want to abstract the name of the keys in case these change later</p></li> </ol> <p>In the case of number 1, constants probably won't save your hash. Instead, consider creating an Class that has public setters and getters that populate a hash visible only to the object. This is a very un-Perl like solution, but very easily to do.</p> <p>In the case of number 2, I'd still advocate strongly for a Class. If access to the hash is regulated through a well-defined interface, only the implementer of the class is responsible for getting the hash key names right. In which case, I wouldn't suggest using constants at all.</p> <p>Hope this helps and thanks for your time.</p> http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/114340#114340 1 Answer by draegtun for Is there any way to use a "constant" as hash key in Perl? draegtun 2008-09-22T11:33:06Z 2008-10-08T07:10:30Z <p>Comment @shelfoo (reputation not high enough to add comment directly there yet!)</p> <p>Totally agree about Perl Best Practices by Damian Conway... its highly recommended reading.</p> <p>However please read <a href="http://www.perlfoundation.org/perl5/index.cgi?pbp_module_recommendation_commentary" rel="nofollow">PBP Module Recommendation Commentary</a> which is a useful "errata" if you plan to use PBP for an in-house style guide.</p> <p>/I3az/</p>