Perl 中的 unless...elsif..else 语句

首页 / Perl入门教程 / Perl 中的 unless...elsif..else 语句

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

unless...elsif..else - 语法

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
}

unless...elsif..else - 示例

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

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

邱岳的产品手记 -〔邱岳〕

TensorFlow快速入门与实战 -〔彭靖田〕

从0打造音视频直播系统 -〔李超〕

现代C++编程实战 -〔吴咏炜〕

重学线性代数 -〔朱维刚〕

大厂晋升指南 -〔李运华〕

打造爆款短视频 -〔周维〕

手把手带你搭建秒杀系统 -〔佘志东〕

结构沟通力 -〔李忠秋〕

好记忆不如烂笔头。留下您的足迹吧 :)