Perl UNLESS...ELSIF 语句



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

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

  • 一个 unless 可以有零个或一个 else,并且它必须放在任何 elsif 之后。

  • 一个 unless 可以有零到多个 elsif,并且它们必须放在 else 之前。

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

语法

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

unless(boolean_expression 1) {
   # Executes when the boolean expression 1 is false
} 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 met
}

示例

#!/usr/local/bin/perl
 
$a = 20;
# check the boolean condition using if statement
unless( $a  ==  30 ) {
   # if condition is false then print the following
   printf "a has a value which is not 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 met
   printf "a has a value which is $a\n";
}

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

a has a value which is not 20
perl_conditions.htm
广告

© . All rights reserved.