Perl IF 语句



Perl 的if语句由一个布尔表达式和一个或多个语句组成。

语法

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

if(boolean_expression) {
   # statement(s) will execute if the given condition is true
}

如果布尔表达式计算结果为true,则将执行if语句内的代码块。如果布尔表达式计算结果为false,则将执行if语句结束后的第一组代码(右花括号之后)。

数字 0,字符串 '0' 和 "",空列表 () 和 undef 在布尔上下文中都为false,所有其他值都为true。使用!not对真值进行否定将返回一个特殊的假值。

流程图

Perl if Statement

示例

#!/usr/local/bin/perl
 
$a = 10;
# check the boolean condition using if statement
if( $a < 20 ) {
   # if condition is true then print the following
   printf "a is less than 20\n";
}
print "value of a is : $a\n";

$a = "";
# check the boolean condition using if statement
if( $a ) {
   # if condition is true then print the following
   printf "a has a true value\n";
}
print "value of a is : $a\n";

第一个 IF 语句使用了小于运算符 (<),它比较两个操作数,如果第一个操作数小于第二个操作数,则返回 true,否则返回 false。因此,当执行上述代码时,将产生以下结果:

a is less than 20
value of a is : 10
value of a is : 
perl_conditions.htm
广告