📜  珀尔 |下一个运算符

📅  最后修改于: 2022-05-13 01:54:49.270000             🧑  作者: Mango

珀尔 |下一个运算符

Perl 中的 next运算符跳过当前循环执行并将迭代器转移到 next 指定的值。如果程序中指定了标签,则执行跳到标签标识的下一个迭代。

示例 1:

#!/usr/bin/perl -w
  
# Perl Program to find the frequency
# of an element
  
@Array = ('G', 'E', 'E', 'K', 'S');
$c = 0;
foreach $key (@Array)
{
    if($key eq 'E') 
    {
        $c = $c + 1;    
    }
    next;
}
  
print "Frequency of E in the Array: $c";
输出:
Frequency of E in the Array: 2


示例 2:

#!/usr/bin/perl
$i = 0;
  
# label for outer loop
outer:
while ( $i < 3 ) {
  
    $j = 0;
    while ( $j < 3 ) {
          
        # Printing values of i and j
        print "i =  $i and j =  $j\n";
          
        # Skipping the loop if i==j
        if ( $j == $i ) {
              
            $i = $i + 1;
            print "As i == j, hence going back to outer loop\n\n";
              
            # Using next to skip the iteration
            next outer;
        }
        $j = $j + 1;
    }
  
    $i = $i + 1;
  
}# end of outer loop
输出:
i =  0 and j =  0
As i == j, hence going back to outer loop

i =  1 and j =  0
i =  1 and j =  1
As i == j, hence going back to outer loop

i =  2 and j =  0
i =  2 and j =  1
i =  2 and j =  2
As i == j, hence going back to outer loop