扫码一下
查看教程更方便
可以将 switch 作为外部 switch 的语句序列的一部分。 即使内外switch的case常量包含共同的值,也不会产生冲突。
MATLAB 中 嵌套 switch 语句的语法是
switch(ch1)
case 'A'
fprintf('This A is part of outer switch');
switch(ch2)
case 'A'
fprintf('This A is part of inner switch' );
case 'B'
fprintf('This B is part of inner switch' );
end
case 'B'
fprintf('This B is part of outer switch' );
end
创建脚本文件并输入以下代码
a = 100;
b = 200;
switch(a)
case 100
fprintf('This is part of outer switch %d\n', a );
switch(b)
case 200
fprintf('This is part of inner switch %d\n', a );
end
end
fprintf('Exact value of a is : %d\n', a );
fprintf('Exact value of b is : %d\n', b );
当我们运行该文件时,它会显示以下结果
This is part of outer switch 100
This is part of inner switch 100
Exact value of a is : 100
Exact value of b is : 200