有没有多维关联数组?

有没有多维关联数组?

有没有多维关联数组?

[Copy to clipboard] [ - ]
CODE:
my @arr = (  
          [000,   001,   002],  
          [010,   011,   012],  
          [020,   021,   022]  
  );

想给000, 001, 002之类的取名字

请使用汉语或英语交流。谢谢。
有没有多维关联数组?

自己试着做一个成功了
利用\

[Copy to clipboard] [ - ]
CODE:
%pic = ('a' => 1, 'b' => 2, 'qqq' => 'yhujk');
my @arr = (  
        \%pic,\%pic,\%pic
);
foreach(@arr) {
        while(($holder2, $record2) = each(%$_)) {
                print $holder2.'holding'.$record2."\n";
        }
}

看精华区,那里有篇我译的文章,专门讲这个。
喏,就是这个:
http://bbs.chinaunix.net/viewthr ... p%3Bfilter%3Ddigest
感谢版主