我不确定如何调用以下数据结构:哈希或数组。
我正在尝试向其中添加第三个元素。有人可以指导我。一些解释将不胜感激,因为我是 perl 和这个论坛的新手。
现有结构:
my $var= [
bless( {
'name' => 'Name1',
'groupid' => '2',
'description' => 'Desc2'
}, 'my_type' ),
bless( {
'name' => 'Name2',
'groupid' => '4',
'description' => 'Desc3'
}, 'my_type' ),
];
我想在其中添加以下内容:
bless( {
'name' => 'Name3',
'groupid' => '9',
'description' => 'Desc4'
}, 'my_type' ),
感谢您的时间和帮助!