由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - question on Perl
相关主题
[转载] perl: regex怎么样循环执行一个命令?
Perl: hash numerical sortmanage cisco router
perl 新手弱问[转载] Shell高手看过来。
批量替换pkgadd on Solaris
Re: how to change all the files .cpp to .C[转载] grep question
help! how to do this?怎么给一个txt里面的email address发邮件?
关于emacs一问。Re: 请推荐一本perl book好不好
文件改名一问?好马配好鞍/介绍一套linux牛书/O'Reilly Animal Book
相关话题的讨论汇总
话题: perl话题: seen话题: inter话题: href话题: question
进入Unix版参与讨论
1 (共1页)
k**e
发帖数: 86
1
参考书"Programming Perl" 有这样一段程序,参2.7.2节 "Passing References",哪位
大侠能解释一下那个“return”语句。实在是有些糊涂,总觉得“$seen{$_} == @_”永
远是FALSE,这样, inter能返回有效的list么?
@common = inter( \%foo, \%bar, \%joe );
sub inter {
my ($k, $href, %seen); # locals
foreach $href (@_) {
while ( ($k) = each %$href ) {
$seen{$k}++;
}
}
return grep { $seen{$_} == @_ } keys %seen;
}
1 (共1页)
进入Unix版参与讨论
相关主题
好马配好鞍/介绍一套linux牛书/O'Reilly Animal BookRe: how to change all the files .cpp to .C
shell programminghelp! how to do this?
CGI之Perl Script一问关于emacs一问。
how to let awk not print?文件改名一问?
[转载] perl: regex怎么样循环执行一个命令?
Perl: hash numerical sortmanage cisco router
perl 新手弱问[转载] Shell高手看过来。
批量替换pkgadd on Solaris
相关话题的讨论汇总
话题: perl话题: seen话题: inter话题: href话题: question