如何在 Perl 哈希表中存储多个值?
Posted
技术标签:
【中文标题】如何在 Perl 哈希表中存储多个值?【英文标题】:How can I store multiple values in a Perl hash table? 【发布时间】:2010-09-16 11:15:03 【问题描述】:直到最近,我一直将多个值存储到具有相同键的不同哈希中,如下所示:
%boss = (
"Allan" => "George",
"Bob" => "George",
"George" => "lisa" );
%status = (
"Allan" => "Contractor",
"Bob" => "Part-time",
"George" => "Full-time" );
然后我可以引用$boss("Bob")
和$status("Bob")
,但是如果每个键都可以拥有很多属性并且我不得不担心保持哈希同步,这将变得笨拙。
有没有更好的方法在哈希中存储多个值?我可以将值存储为
"Bob" => "George:Part-time"
然后用split拆解字符串,但一定有更优雅的方式。
【问题讨论】:
这很好地提醒了我们为什么 Perl 数据结构说明书是一个很好的资源。 【参考方案1】:这是标准方式,根据perldoc perldsc。
~> more test.pl
%chums = ( "Allan" => "Boss" => "George", "Status" => "Contractor",
"Bob" => "Boss" => "Peter", "Status" => "Part-time" );
print $chums"Allan""Boss"."\n";
print $chums"Bob""Boss"."\n";
print $chums"Bob""Status"."\n";
$chums"Bob""Wife" = "Pam";
print $chums"Bob""Wife"."\n";
~> perl test.pl
George
Peter
Part-time
Pam
【讨论】:
看起来不错。我想我可以用 $chums"Greg" = "Boss" => "Lisa", "Status" => "Fired" 添加另一个好友,但是我该如何为 Bob 添加一个妻子呢?那会是 $chums"Bob""Wife" = "Carol" 吗? 另外,为什么是“->”。它似乎没有这些功能。 TIMTOWDI :),你可以不使用它,是的,你添加妻子的方式是正确的 这很好地提醒了 perldsc 的价值。这应该是 php、Python、Ruby 和 Perl 程序员的必读内容。【参考方案2】:散列的散列是您明确要求的。 Perl 文档中有一个教程风格的文档部分,其中涵盖了这一点:Data Structure Cookbook 但也许您应该考虑使用面向对象。这是面向对象编程教程的典型示例。
这样的事情怎么样:
#!/usr/bin/perl
package Employee;
use Moose;
has 'name' => ( is => 'rw', isa => 'Str' );
# should really use a Status class
has 'status' => ( is => 'rw', isa => 'Str' );
has 'superior' => (
is => 'rw',
isa => 'Employee',
default => undef,
);
###############
package main;
use strict;
use warnings;
my %employees; # maybe use a class for this, too
$employeesGeorge = Employee->new(
name => 'George',
status => 'Boss',
);
$employeesAllan = Employee->new(
name => 'Allan',
status => 'Contractor',
superior => $employeesGeorge,
);
print $employeesAllan->superior->name, "\n";
【讨论】:
这样的好处是以后可以增强。【参考方案3】:散列可以包含其他散列或数组。如果您想按名称引用您的属性,请将它们存储为每个键的哈希值,否则将它们存储为每个键的数组。
有一个reference for the syntax。
【讨论】:
【参考方案4】:my %employees = (
"Allan" => "Boss" => "George", "Status" => "Contractor" ,
);
print $employees"Allan""Boss", "\n";
【讨论】:
【参考方案5】:%chums = ( "Allan" => "Boss" => "George", "Status" => "Contractor", "Bob" => "Boss" => "Peter", "Status" => "兼职" );
效果很好,但有没有更快的方法来输入数据?
我正在考虑类似的事情
%chums = (qw, x)(Allan Boss George Status Contractor Bob Boss Peter Status Part-time)
其中 x = 主键之后的辅助键的数量,在这种情况下 x = 2,“老板”和“状态”
【讨论】:
以上是关于如何在 Perl 哈希表中存储多个值?的主要内容,如果未能解决你的问题,请参考以下文章