Perl IF...ELSIF 语句



一个if语句后面可以跟一个可选的elsif...else语句,这对于使用单个if...elsif语句测试各种条件非常有用。

使用if, elsif, else语句时,需要注意以下几点。

  • 一个if语句可以有零个或一个else,并且它必须位于任何elsif之后。

  • 一个if语句可以有零个或多个elsif,并且它们必须位于else之前。

  • 一旦elsif成功,就不会测试任何剩余的elsifelse

语法

Perl编程语言中if...elsif...else语句的语法如下:

if(boolean_expression 1) {
   # Executes when the boolean expression 1 is true
} elsif( boolean_expression 2) {
   # Executes when the boolean expression 2 is true
} elsif( boolean_expression 3) {
   # Executes when the boolean expression 3 is true
} else {
   # Executes when the none of the above condition is true
}

示例

#!/usr/local/bin/perl
 
$a = 100;
# check the boolean condition using if statement
if( $a  ==  20 ) {
   # if condition is true then print the following
   printf "a has a value which is 20\n";
} elsif( $a ==  30 ) {
   # if condition is true then print the following
   printf "a has a value which is 30\n";
} else {
   # if none of the above conditions is true
   printf "a has a value which is $a\n";
}

这里我们使用了等号运算符 ==,用于检查两个操作数是否相等。如果两个操作数相同,则返回true,否则返回false。执行上述代码后,将产生以下结果:

a has a value which is 100
perl_conditions.htm
广告