作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 2 个循环,一个内循环和一个外循环。在一种情况下,我只想退出内循环以转到外循环,而在另一种情况下,我想从内循环退出到正常程序(换句话说,我想从内循环退出,而外循环并继续执行 man 程序)
有谁知道我可以同时做到这两点的方法吗?
最佳答案
是的,这要归功于命名循环。示例:
Outer_Loop:
loop
-- first inner loop
loop
…
-- exit the inner loop when a condition is met
exit when Check_Condition();
…
end loop;
-- second inner loop
loop
…
-- exit the *outer* loop, in this example unconditionally
exit Outer_Loop;
-- or you can combine it with a condition
exit Outer_Loop when Another_Condition_Met();
…
end loop;
end loop Outer_Loop;
-- execution will continue here after 'exit Outer_Loop;'
…
可以找到引用(对于 '95 版本的语言)here .
关于ada - 有没有办法退出单个循环,并退出所有循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28611846/
我是一名优秀的程序员,十分优秀!