在ECMAScript®语言规范5.1版的5.2 Algorithm Conventions中:
如果算法被定义为“抛出异常”,则执行 算法终止,不返回任何结果。呼唤 算法也被终止,直到达到算法步骤 明确处理异常,使用诸如的术语 “如果抛出异常......”。一旦这样的算法步骤已经存在 遇到异常不再被认为已经发生。
为什么抛出后不再考虑异常?我不明白。有一个算法步骤“处理”异常,所以我认为应该考虑“发生”。
(我想在询问前搜索网页,但我不知道要搜索什么。)
答案 0 :(得分:2)
可以用以下示例代码解释:
// our algorithm
function foo()
{
// throw the exception
throw 'a ball';
console.log('this is not output'); // terminated statement
}
// the calling algorithm
function bar()
{
try {
foo();
} catch (e) {
// dealing with the exception
}
// no longer an exception here
console.log('all is fine');
}
答案 1 :(得分:0)
我认为它们意味着在步骤的上下文中处理异常。实际上:试一试。
一旦你发现异常,它就不再起泡了。