PERL的默认变量$_的使用

涉及到Scalar类型参数的地方,均可以省略变量的声明。PERL会使用默认变量$_

例如:

chomp
while(<>)
print
split(/ /, )

这种不显式声明变量的语句,在PERL中等价于下列:

chomp $_
while($_=<>)
print $_
split(/ /, $_)

你可能感兴趣的:(perl)