perl控制结构学习笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了perl控制结构学习笔记相关的知识,希望对你有一定的参考价值。
一.条件判断
if ( )
{
}
elsif ( )
{
}
...
else
{
}
实例
#!/usr/bin/perl
use strict;
use warnings;
my $in =<STDIN>; #用户输入一个数字
chomp($in);
if($in>90){ #如果输入数字大于90 则大于 $IN>a
print '$in>a';
}else{ #否则打印$IN <a
print '$in<a';
}
二.循环
1.while循环
while ( )
{
}
2.until循环 #条件为假是执行循环
until ( )
{
}
实例
#!/usr/bin/perl
use strict;
use warnings;
my $i = 1; my $j = 10;
until($i>$j){ #$i>$j 此处条件为假
$i++;
print "Hello\n";
}
打印结果
---------- Perl ----------
2
3
4
5
6
7
8
9
10
11
Output completed (0 sec consumed) - Normal Termination
结论从打印结果可以看出 只要until循环满足 判断条件为假 执行条件真时结束循环。实例可以看出 当$i =11 时 $i>$j 条件为真 结束循环。
3.类C的for循环
for ($count=1; $count <= 5; $count++)
{
#statements inside the loop go here
}
4.针对列表(数组)每个元素的foreach循环
foreach localvar (listexpr)
{
statement_block;
}
注:
(1)此处的循环变量localvar是个局部变量,如果在此之前它已有值,则循环后仍恢复该值.
(2)在循环中改变局部变量,相应的数组变量也会改变.
例:
foreach $word (@words)
{
if ($word eq "the")
{
print ("found the word 'the'\n");
}
}
此外,如果localvar省略了的话,PERL将使用默认变量$_.
例:
@array = (123, 456, 789);
foreach (@array)
{
print $_;
}
$_是PERL最常使用的默认变量,上例中print后面的$_也可以去掉,当print没有参数时,会默认输出$_变量.
5.do循环
do
{
statement_block
} while_or_until(condexpr);
do循环至少执行一次循环.
6.循环控制
退出循环为last,与C中的break作用相同;
执行下一个循环为next,与C中的continue作用相同;
PERL特有的一个命令是redo,其含义是重复此次循环,即循环变量不变,回到循环起始点.但要注意,redo命令在do循环中不起作用.
三.单行条件
语法为statement keyword condexpr.其中keyword可为if, unless, while或until.例如:
print ("This is zero.\n") if ($var == 0);
print ("This is zero.\n") unless ($var != 0);
print ("Not zero yet.\n") while ($var-- > 0);
print ("Not zero yet.\n") until ($var-- == 0);
虽然条件判断写在后面,但却是先执行的。
以上是关于perl控制结构学习笔记的主要内容,如果未能解决你的问题,请参考以下文章