作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
# I have a hash
my %my_hash;
# I have an array
@my_array = ["aa" , "bbb"];
# I store the array in my hash
$my_hash{"Kunjan"} = @my_array;
# But I can't print my array's element
print $my_hash{"Kunjan"}[0];
我是 Perl 新手。请帮助我。
最佳答案
您的数组语法不正确。您正在创建一个匿名列表引用,@my_array
是包含该引用的单元素列表。
您可以正确使用引用,将其作为标量:
$my_array = ["aa" , "bbb"];
$my_hash{"Kunjan"} = $my_array;
或者您可以将列表作为列表使用,仅在将其放入散列时创建引用:
@my_array = ("aa" , "bbb");
$my_hash{"Kunjan"} = \@my_array;
关于perl - 如何在 Perl 中访问存储在散列中的数组元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1793105/
我是一名优秀的程序员,十分优秀!