if statement
优质
小牛编辑
150浏览
2023-12-01
Perl if语句由一个布尔表达式后跟一个或多个语句组成。
语法 (Syntax)
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返回特殊的假值。
流程图 (Flow Diagram)
例子 (Example)
#!/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语句使用小于运算符( 因此,当执行上述代码时,它会产生以下结果 -
a is less than 20
value of a is : 10
value of a is :