由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - perl 新手弱问
相关主题
[转载] perl: regexRe: how to change all the files .cpp to .C
question on Perlhelp! how to do this?
Perl: hash numerical sort关于emacs一问。
how to let awk not print?文件改名一问?
how to get rid of the ^M in files?怎么样循环执行一个命令?
perl Qmanage cisco router
Perl问题求助 (转载)[转载] Shell高手看过来。
50伪币:请教perl代码差错的问题!多谢啦!pkgadd on Solaris
相关话题的讨论汇总
话题: foreach话题: print话题: qw话题: perl话题: 干嘛
进入Unix版参与讨论
1 (共1页)
h*********e
发帖数: 247
1
我要改以前人家留下的一个perl程序
,看到一段奇怪的code, 简化一下就是如下的样子,
@A=qw(A1 A2 A3);
@B=qw(B1 B2 B3);
foreach (@A)
{
print $_, $/;
}
foreach (@B)
{
print $_, $/;
}
@A{@B} = @A; 实在是不明白这一行在干嘛,
print "after @ A{ @ B} = @ A; ", $/;
foreach (@A)
{
print $_, $/;
}
foreach (@B)
{
print $_, $/;
}
输出显示A,B都没变啊,哪位高手指点一下迷津吧, @A{@B} = @A; 到底是干嘛的?
谢谢啦!
1 (共1页)
进入Unix版参与讨论
相关主题
pkgadd on Solarishow to get rid of the ^M in files?
[转载] grep questionperl Q
怎么给一个txt里面的email address发邮件?Perl问题求助 (转载)
双面打印50伪币:请教perl代码差错的问题!多谢啦!
[转载] perl: regexRe: how to change all the files .cpp to .C
question on Perlhelp! how to do this?
Perl: hash numerical sort关于emacs一问。
how to let awk not print?文件改名一问?
相关话题的讨论汇总
话题: foreach话题: print话题: qw话题: perl话题: 干嘛