Is there any way to use a "constant" as hash key in Perl? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T09:04:15Zhttp://stackoverflow.com/feeds/question/96848http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl4Is there any way to use a "constant" as hash key in Perl?Jagmal2008-09-18T20:54:25Z2008-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 => 1;
my %x = (X => '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#9686914Answer by nohat for Is there any way to use a "constant" as hash key in Perl?nohat2008-09-18T20:57:00Z2008-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 => 1;
my %x = ( &X => 'X');
</code></pre>
<p>or</p>
<pre><code>use constant X => 1;
my %x = ( X() => 'X');
</code></pre>
http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/96877#968778Answer by cjm for Is there any way to use a "constant" as hash key in Perl?cjm2008-09-18T20:57:32Z2008-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() => 'X' );
my %x = ( &X => 'X' );
</code></pre>
http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/96885#968852Answer by Arkadiy for Is there any way to use a "constant" as hash key in Perl?Arkadiy2008-09-18T20:58:17Z2008-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#968882Answer by Frosty for Is there any way to use a "constant" as hash key in Perl?Frosty2008-09-18T20:58:25Z2008-09-18T20:58:25Z<p>One way is to encapsulate X as (X):</p>
<pre><code>my %x ( (X) => 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#969024Answer by Chris for Is there any way to use a "constant" as hash key in Perl?Chris2008-09-18T21:00:09Z2008-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#9701912Answer by shelfoo for Is there any way to use a "constant" as hash key in Perl?shelfoo2008-09-18T21:11:07Z2008-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#970350Answer by Jagmal for Is there any way to use a "constant" as hash key in Perl?Jagmal2008-09-18T21:13:07Z2008-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#970703Answer by Michael Carman for Is there any way to use a "constant" as hash key in Perl?Michael Carman2008-09-18T21:16:26Z2008-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>=></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 => 1;
%hash = (X() => 1);
%hash = (+X => 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#974405Answer by jjohn for Is there any way to use a "constant" as hash key in Perl?jjohn2008-09-18T22:00:14Z2008-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#1143401Answer by draegtun for Is there any way to use a "constant" as hash key in Perl?draegtun2008-09-22T11:33:06Z2008-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>