Why are you using a hash in this case? It looks like you are using it where one would use a struct in C. Now, either of two things could be the case: you just have a single hash with this role, or it's one of many. In the first case, you can avoid the hash altogether, and just use variables, $name, $age, etc. If you have more of them, just turn them inside-out. Say you would normally have %person1, %person2, %person3, etc, each with an age, a name, and perhaps more,
something like:
my (%person1, %person2, %person3, ...);
$person1 {name} = "...";
$person1 {age} = ...;
$person2 {name} = "...";
$person2 {aeg} = ...; # Oopsie.
$person3 {name} = "...";
$person3 {age} = ...;
Instead of hashes for the entities, and attributes as the keys, make hashes for the attributes, using the entities as attributes - just make sure the entities are unique.
my (%age, %name);
my $entitie_count = 0;
my $person1 = ++ $entitie_count;
my $person2 = ++ $entitie_count;
my $person3 = ++ $entitie_count;
$name {$person1} = "...";
$age {$person1} = ...;
$name {$person2} = "...";
$aeg {$person2} = ...; # Compile time error with use strict.
$name {$person3} = "...";
$age {$person3} = ...;
Abigail
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link
or How to display code and escape characters
are good places to start.