perl 控制結構 條件控制 if while

來源:互聯網
上載者:User

一、條件判斷
if ( <expression>) {
<statement_block_1>
}
elsif ( <expression> ) {
<statement_block_2>
}
...
else{
<statement_block_3>
}
二、迴圈:
1、while迴圈
while ( <expression> ) {
<statement_block>
}
2、until迴圈
until ( <expression> ) {
<statement_block>
}
3、類C的for迴圈 ,如
for ($count=1; $count <= 5; $count++) {
# statements inside the loop go here
}
下面是在for迴圈中使用逗號操作符的例子:
for ($line = <STDIN>, $count = 1; $count <= 3; $line = <STDIN>, $count++) {
print ($line);
}
它等價於下列語句:
$line = <STDIN>;
$count = 1;
while ($count <= 3) {
print ($line);
$line = <STDIN>;
$count++;
}
4、針對列表(數組)每個元素的迴圈:foreach,文法為:
foreach localvar (listexpr) {
statement_block;
}
例:
foreach $word (@words) {
if ($word eq "the") {
print ("found the word 'the'\n");
}
}
註:
(1)此處的迴圈變數localvar是個局部變數,如果在此之前它已有值,則迴圈後仍恢複該值。
(2)在迴圈中改變局部變數,相應的陣列變數也會改變,如:
@list = (1, 2, 3, 4, 5);
foreach $temp (@list) {
if ($temp == 2) {
$temp = 20;
}
}
此時@list已變成了(1, 20, 3, 4, 5)。
5、do迴圈
do {
statement_block
} while_or_until (condexpr);
do迴圈至少執行一次迴圈。
6、迴圈控制
退出迴圈為last,與C中的break作用相同;執行下一個迴圈為next,與C中的continue作用相同;PERL特有的一個命令是redo,其含義是重複此次迴圈,即迴圈變數不變,回到迴圈起始點,但要注意,redo命令在do迴圈中不起作用。
7、傳統的goto label;語句。

三、單行條件
文法為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);
雖然條件判斷寫在後面,但卻是先執行的。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.