Es posible tener un case statement como parte de la secuencia de declaraciones de un exterior case statement. Incluso si loscase constants del caso interno y externo contienen valores comunes, no surgirán conflictos.
Sintaxis
La sintaxis de una declaración de caso anidada es la siguiente:
case (ch1) of
'A': begin
writeln('This A is part of outer case' );
case(ch2) of
'A': writeln('This A is part of inner case' );
'B': (* case code *)
...
end; {end of inner case}
end; (* end of case 'A' of outer statement *)
'B': (* case code *)
'C': (* case code *)
...
end; {end of outer case}
Ejemplo
El siguiente programa ilustra el concepto.
program checknestedCase;
var
a, b: integer;
begin
a := 100;
b := 200;
case (a) of
100: begin
writeln('This is part of outer statement' );
case (b) of
200: writeln('This is part of inner statement' );
end;
end;
end;
writeln('Exact value of a is : ', a );
writeln('Exact value of b is : ', b );
end.
Cuando se compila y ejecuta el código anterior, produce el siguiente resultado:
This is part of outer switch
This is part of inner switch
Exact value of a is: 100
Exact value of b is: 200