Show Example 2
优质
小牛编辑
130浏览
2023-12-01
这些也称为关系运算符。 假设变量$ a保持10,变量$ b保持20,那么让我们检查以下数字相等运算符 -
Sr.No. | 操作符和说明 |
---|---|
1 | == (equal to) 检查两个操作数的值是否相等,如果是,则条件变为真。 Example - ($ a == $ b)不成立。 |
2 | != (not equal to) 检查两个操作数的值是否相等,如果值不相等则条件变为true。 Example - ($ a!= $ b)为真。 |
3 | 《=》 检查两个操作数的值是否相等,并返回-1,0或1,具体取决于左参数是否在数值上小于,等于或大于右参数。 Example - ($ a“=”$ b)返回-1。 |
4 | 》 (greater than) 检查左操作数的值是否大于右操作数的值,如果是,则条件变为真。 Example - ($ a“$ b)不成立。 |
5 | 《 (less than) 检查左操作数的值是否小于右操作数的值,如果是,则条件变为真。 Example - ($ a“$ b)为真。 |
6 | 》= (greater than or equal to) 检查左操作数的值是否大于或等于右操作数的值,如果是,则条件变为真。 Example - ($ a“= $ b)不成立。 |
7 | 《= (less than or equal to) 检查左操作数的值是否小于或等于右操作数的值,如果是,则条件变为真。 Example - ($ a“= $ b)为真。 |
例子 (Example)
请尝试以下示例以了解Perl中可用的所有数字相等运算符。 将以下Perl程序复制并粘贴到test.pl文件中并执行该程序。
#!/usr/local/bin/perl
$a = 21;
$b = 10;
print "Value of \$a = $a and value of \$b = $b\n";
if( $a == $b ) {
print "$a == \$b is true\n";
} else {
print "\$a == \$b is not true\n";
}
if( $a != $b ) {
print "\$a != \$b is true\n";
} else {
print "\$a != \$b is not true\n";
}
$c = $a <=> $b;
print "\$a <=> \$b returns $c\n";
if( $a > $b ) {
print "\$a > \$b is true\n";
} else {
print "\$a > \$b is not true\n";
}
if( $a >= $b ) {
print "\$a >= \$b is true\n";
} else {
print "\$a >= \$b is not true\n";
}
if( $a < $b ) {
print "\$a < \$b is true\n";
} else {
print "\$a < \$b is not true\n";
}
if( $a <= $b ) {
print "\$a <= \$b is true\n";
} else {
print "\$a <= \$b is not true\n";
}
执行上述代码时,会产生以下结果 -
Value of $a = 21 and value of $b = 10
$a == $b is not true
$a != $b is true
$a <=> $b returns 1
$a > $b is true
$a >= $b is true
$a < $b is not true
$a <= $b is not true