免费注册 查看新帖 |

Chinaunix

广告
  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2762 | 回复: 2
打印 上一主题 下一主题

perl map求解惑 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-11-21 11:32 |只看该作者 |倒序浏览
在测试map的用法,虽然报错信息很清楚说参数不够,但我还是不明白是为什么。。。

#!/usr/bin/perl -w
use strict;

my @stri=(1,2,3,4);
my @abc=  map {'x',$_+1} @stri;
print "$_\n" for @abc;

[root@xx perl]# perl test.pl
Not enough arguments for map at test.pl line 5, near "} @stri"
syntax error at test.pl line 5, near "} @stri"
Execution of test.pl aborted due to compilation errors.

----------------------------------------------------------------------
#!/usr/bin/perl -w
use strict;

my @stri=(1,2,3,4);
my @abc=  map {$_+1,'x'} @stri;
print "$_\n" for @abc;

[root@xx perl]# perl test.pl
2
x
3
x
4
x
5
x

论坛徽章:
46
15-16赛季CBA联赛之四川
日期:2018-03-27 11:59:132015年亚洲杯之沙特阿拉伯
日期:2015-04-11 17:31:45天蝎座
日期:2015-03-25 16:56:49双鱼座
日期:2015-03-25 16:56:30摩羯座
日期:2015-03-25 16:56:09巳蛇
日期:2015-03-25 16:55:30卯兔
日期:2015-03-25 16:54:29子鼠
日期:2015-03-25 16:53:59申猴
日期:2015-03-25 16:53:29寅虎
日期:2015-03-25 16:52:29羊年新春福章
日期:2015-03-25 16:51:212015亚冠之布里斯班狮吼
日期:2015-07-13 10:44:56
2 [报告]
发表于 2015-11-21 11:50 |只看该作者
perl 的 parser 能力有限,map 遇到 { 开头的可能是 hashref 也可能是block,但是不能向后查看到闭括号 } 后面有没有逗号,所以实际编译时是按经验猜测的,猜错了新版本的会提示是语法错误(所以请升级你的解释器)。 perldoc -f map

{ starts both hash references and blocks, so map { ... could be either the start of map BLOCK LIST or map EXPR, LIST. Because Perl doesn't look ahead for the closing } it has to take a guess at which it's dealing with based on what it finds just after the {. Usually it gets it right, but if it doesn't it won't realize something is wrong until it gets to the } and encounters the missing (or unexpected) comma. The syntax error will be reported close to the }, but you'll need to change something near the { such as using a unary + or semicolon to give Perl some help:

        %hash = map {  "\L$_" => 1  } @array # perl guesses EXPR. wrong
        %hash = map { +"\L$_" => 1  } @array # perl guesses BLOCK. right
        %hash = map {; "\L$_" => 1  } @array # this also works
        %hash = map { ("\L$_" => 1) } @array # as does this
        %hash = map {  lc($_) => 1  } @array # and this.
        %hash = map +( lc($_) => 1 ), @array # this is EXPR and works!
        %hash = map  ( lc($_), 1 ),   @array # evaluates to (1, @array)

or to force an anon hash constructor use +{:

        @hashes = map +{ lc($_) => 1 }, @array # EXPR, so needs
                                               # comma at end

to get a list of anonymous hashes each with only one entry apiece.

评分

参与人数 1可用积分 +8 收起 理由
MMMIX + 8 赞一个!

查看全部评分

论坛徽章:
0
3 [报告]
发表于 2015-11-21 12:07 |只看该作者
回复 2# zhlong8


多谢!已经成功了!

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

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP