由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - [转载] 新手问perl的初级问题
相关主题
a perl questionRe: 请推荐一本perl book好不好
Matrix inverse problem好马配好鞍/介绍一套linux牛书/O'Reilly Animal Book
[转载] 问个小问题shell programming
question about token ring...CGI之Perl Script一问
[转载] UNIX下的strtokhow to let awk not print?
why can't access news group comp.lang.* ?how to write robort in perl w/out expect?
Regular expressionHow to do "which" in perl?
[转载] [Q] sh under Redhat9.0how to run active perl in cygwin?
相关话题的讨论汇总
话题: its话题: fd话题: barits话题: cgits话题: my
进入Unix版参与讨论
1 (共1页)
l*****i
发帖数: 3929
1
【 以下文字转载自 Linux 讨论区 】
【 原文由 longhei 所发表 】
有这样一段perl script:
use strict;
open(my $fd," my(@cgits,@barits);
while(<$fd>) {
$_ =~ s/^\s+//; # trim leading white space
my($iter,$res,$obj,$feas,$dual,$comp,$its,$mu,$junk) = split(/\s+/,$_);
next if ! defined $its || $its !~ /^\d+$/; # skip if seventh token not
integer
push(@cgits,$its);
push(@barits,$its) if $mu > 2.1e-8;
}
有这样几个问题请教:
1。“use strict”是干什么用的?
2。open(my $fd,"
c**t
发帖数: 2744
2
use strict; # all variables should be declared
my $fd; # define file handle
my (@cgits, @barits) #declare two array.

【在 l*****i 的大作中提到】
: 【 以下文字转载自 Linux 讨论区 】
: 【 原文由 longhei 所发表 】
: 有这样一段perl script:
: use strict;
: open(my $fd,": my(@cgits,@barits);
: while(<$fd>) {
: $_ =~ s/^\s+//; # trim leading white space
: my($iter,$res,$obj,$feas,$dual,$comp,$its,$mu,$junk) = split(/\s+/,$_);
: next if ! defined $its || $its !~ /^\d+$/; # skip if seventh token not

l*****i
发帖数: 3929
3
thank a lot!

【在 c**t 的大作中提到】
: use strict; # all variables should be declared
: my $fd; # define file handle
: my (@cgits, @barits) #declare two array.

1 (共1页)
进入Unix版参与讨论
相关主题
how to run active perl in cygwin?[转载] UNIX下的strtok
[转载] Perl 土问题why can't access news group comp.lang.* ?
[转载] Perl高手请进Regular expression
初级问题:怎么打开.rpm文件阿?[转载] [Q] sh under Redhat9.0
a perl questionRe: 请推荐一本perl book好不好
Matrix inverse problem好马配好鞍/介绍一套linux牛书/O'Reilly Animal Book
[转载] 问个小问题shell programming
question about token ring...CGI之Perl Script一问
相关话题的讨论汇总
话题: its话题: fd话题: barits话题: cgits话题: my