Loop aninhado em Perl
Um loop pode ser aninhado dentro de outro loop. Perl permite aninhar todos os tipos de loops a serem aninhados.
Sintaxe
A sintaxe de um nested for loop declaração em Perl é a seguinte -
for ( init; condition; increment ) {
for ( init; condition; increment ) {
statement(s);
}
statement(s);
}
A sintaxe de um nested while loop declaração em Perl é a seguinte -
while(condition) {
while(condition) {
statement(s);
}
statement(s);
}
A sintaxe de um nested do...while loop declaração em Perl é a seguinte -
do{
statement(s);
do{
statement(s);
}while( condition );
}while( condition );
A sintaxe de um nested until loop declaração em Perl é a seguinte -
until(condition) {
until(condition) {
statement(s);
}
statement(s);
}
A sintaxe de um nested foreach loop declaração em Perl é a seguinte -
foreach $a (@listA) {
foreach $b (@listB) {
statement(s);
}
statement(s);
}
Exemplo
O programa a seguir usa um aninhado while loop para mostrar o uso -
#/usr/local/bin/perl
$a = 0;
$b = 0;
# outer while loop
while($a < 3) {
$b = 0;
# inner while loop
while( $b < 3 ) {
print "value of a = $a, b = $b\n";
$b = $b + 1;
}
$a = $a + 1;
print "Value of a = $a\n\n";
}
Isso produziria o seguinte resultado -
value of a = 0, b = 0
value of a = 0, b = 1
value of a = 0, b = 2
Value of a = 1
value of a = 1, b = 0
value of a = 1, b = 1
value of a = 1, b = 2
Value of a = 2
value of a = 2, b = 0
value of a = 2, b = 1
value of a = 2, b = 2
Value of a = 3