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。否定真值or not返回一个特殊的 false 值。

流程图

Perl if 语句

例子

#!/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