免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 6134 | 回复: 10
打印 上一主题 下一主题

@{}是什么啊?菜鸟求助 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-04-17 17:36 |只看该作者 |倒序浏览
本帖最后由 64805176 于 2012-04-17 18:33 编辑

#!/usr/bin/perl

my %h;
while (<DATA>) {
    my ( $i, $j ) = split;
    push @{ $h{$i} }, $j;
}

__DATA__
a        b
a        c
b        e
b        f
c        e
c        f
b        c
e        f



  push @{ $h{$i} }, $j;这一句是什么意思啊?






论坛徽章:
0
2 [报告]
发表于 2012-04-17 17:40 |只看该作者
本帖最后由 sjdy521 于 2012-04-17 17:42 编辑

简单的说就是解引用(dereference)

参见http://perldoc.perl.org/perlref.html

Using a reference as a string produces both its referent's type, including any package blessing as described in perlobj, as well as the numeric address expressed in hex. The ref() operator returns just the type of thing the reference is pointing to, without the address. See ref for details and examples of its use.

The bless() operator may be used to associate the object a reference points to with a package functioning as an object class. See perlobj.

A typeglob may be dereferenced the same way a reference can, because the dereference syntax always indicates the type of reference desired. So ${*foo} and ${\$foo} both indicate the same scalar variable.

Here's a trick for interpolating a subroutine call into a string:
    print "My sub returned @{[mysub(1,2,3)]} that time.\n";

The way it works is that when the @{...} is seen in the double-quoted string, it's evaluated as a block. The block creates a reference to an anonymous array containing the results of the call to mysub(1,2,3) . So the whole block returns a reference to an array, which is then dereferenced by @{...} and stuck into the double-quoted string. This chicanery is also useful for arbitrary expressions:
    print "That yields @{[$n + 5]} widgets\n";

Similarly, an expression that returns a reference to a scalar can be dereferenced via ${...} . Thus, the above expression may be written as:
    print "That yields ${\($n + 5)} widgets\n";

论坛徽章:
0
3 [报告]
发表于 2012-04-17 20:57 |只看该作者
64805176 发表于 2012-04-17 17:36
#!/usr/bin/perl

my %h;


$h{$i}指向一个匿名数组。
@{ $h{$i} } 就是解引用这个数组,因为要往里面push东西。

论坛徽章:
0
4 [报告]
发表于 2012-04-18 09:45 |只看该作者
回复 1# 64805176


    你可以百度或者google一下 hash autovivification, perl intermediate 推荐你读一下前6章

论坛徽章:
0
5 [报告]
发表于 2012-04-18 10:54 |只看该作者
兰花仙子 发表于 2012-04-17 20:57
$h{$i}指向一个匿名数组。
@{ $h{$i} } 就是解引用这个数组,因为要往里面push东西。

怎么print %h后是一串地址呢?不应该是将DATA数据当做hash存放在%h中的吗?

论坛徽章:
0
6 [报告]
发表于 2012-04-18 11:08 |只看该作者
回复 5# wonderall01


    你用Data:umper去Dump一下整个数据结构 看看里面到底是一个什么玩意儿

论坛徽章:
0
7 [报告]
发表于 2012-04-18 11:45 |只看该作者
pengphy 发表于 2012-04-18 11:08
回复 5# wonderall01

dump出来数据时对的,但是直接打印哈希%h就输出的键正确但是值却是地址呢?

论坛徽章:
0
8 [报告]
发表于 2012-04-18 12:36 |只看该作者
回复 7# wonderall01


    perl intermediate chapter4&5, 你应该先看一下这两章内容 之后还是不明白再问吧

论坛徽章:
0
9 [报告]
发表于 2012-04-18 12:51 |只看该作者
pengphy 发表于 2012-04-18 12:36
回复 7# wonderall01

好滴。

论坛徽章:
0
10 [报告]
发表于 2012-04-18 21:53 |只看该作者
回复 3# 兰花仙子


   我还是不太明白这里$h{$i}
比如说读取第一行 a   b
$i=a, $h{$i}应该是$h{a},$h{a}应该就是b啊,为什么是一个地址呢

怎么理解呢??




您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP