热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

慎用trycatch

媒介自从ECMA-262第3版引入了trycatch语句,作为JavaScript中处置惩罚非常的一种规范体式格局。基础的语法以下所示。一、trycatch基础语法try{可能会致

媒介

自从ECMA-262第3版引入了try catch语句,作为Javascript中处置惩罚非常的一种规范体式格局。基础的语法以下所示。

一、try catch基础语法

try {
//可能会致使毛病的代码
} catch (error) {
//在毛病发作时怎样处置惩罚
}finally {
//纵然报错一直实行
}

二、try catch特性

1.try catch耗机能
1.1 try catch耗机能道理

ECMAScript 2015 -The try Statement

13.15.5 Static Semantics: VarDeclaredNames

  • TryStatement : try Block Catch Finally
  • 1.Let names be VarDeclaredNames of Block.
  • 2.Append to names the elements of the VarDeclaredNames of Catch.
  • 3.Append to names the elements of the VarDeclaredNames of Finally.
  • 4.Return names.

13.15.6 Static Semantics: VarScopedDeclarations

  • TryStatement : try Block Catch Finally
  • 1.Let declarations be VarScopedDeclarations of Block.
  • 2.Append to declarations the elements of the VarScopedDeclarations of Catch.
  • 3.Append to declarations the elements of the VarScopedDeclarations of Finally.
  • 4.Return declarations.

依据上面ECMAScript文档的13.15.513.15.6`。

下面仅为本妹子本身的翻译明白,仅供参考

上面大概说运转try catch时,须要将当前的词法环境和作用域悉数离别增加到catchFinally所要实行的代码块中。从上能够推断出try catch是斲丧机能的。

1.2 try catch耗机能试验

《慎用try catch》

下面我用Chrome62IE9离别增加多个try catch,举行对照试验,虽然,很想扬弃万恶的IE,然则许多国内的产物不准许呀,除非我们去健身房再多练练,打一架,嘿嘿~~
1.2.1 试验数据:

//没有加try catch
(function () {
var i = 0;
i++;
}())

//有try catch
(function () {
var i = 0;
try {
i++;
} catch (ex) {
} finally {
}
}())

1.2.2 试验效果:
《慎用try catch》

《慎用try catch》

《慎用try catch》

《慎用try catch》

1.2.3 试验链接:

https://jsperf.com/test-try-catch3

https://jsperf.com/test-try-catch

上面试验数据对照得知,try catch会斲丧机能,然则try catchChrome的影响比IE11小许多,据说是V8引擎新的编译器TurboFan 起到的作用,有兴致的小伙伴们能够看下v8_8h_source的3354行起,然则IE11是slower不少的。这就依据小伙伴们的营业对象了,假如只面向当代浏览器,try catch斲丧机能影响会很小;假如须要兼容IE或内嵌在低端的webView时,可适当斟酌下try catch斲丧机能。

2.try catch捕捉不到异步毛病

尝试对异步要领举行try catch操纵只能捕捉当次事宜轮回内的非常,对callback实行时抛出的非常将无计可施。

try {
setTimeout(()=>{
const A = 1
A = 2
},0)
} catch (err) {
// 这里并不能捕捉回调内里抛出的非常
console.log("-----catch error------")
console.log(err)
}

异步状况想捕捉非常,发起在异步函数里包一层try catch


setTimeout(() => {
try {
const A = 1
A = 2
} catch (err) {
console.log(err)
}
}, 0)

3.try catch抛出毛病

try-catch 语句相配的另有一个 throw 操纵符,随时抛出自定义毛病,能够依据差别毛病范例,建立自定义毛病音讯。

throw new Error("Something bad happened.");
throw new SyntaxError("I don’t like your syntax.");
throw new TypeError("What type of variable do you take me for?"); throw new RangeError("Sorry, you just don’t have the range.");
throw new EvalError("That doesn’t evaluate.");
throw new URIError("Uri, is that you?");
throw new ReferenceError("You didn’t cite your references properly.");

假如以为自定义的报错不合理,想看原生报错,能够运用ChromePause on exceptions功用
《慎用try catch》

三、慎用try catch

try catch最适合处置惩罚那些我们无法控制的毛病,如I/O操纵等,后端nodeJsjava读取I/O操纵比较多比方读数据库,所以用try catch比较多。前端能够用在上传图片、运用他人的js库报错、async await同步伐接口等处所实用。

async function f() {
try {
await Promise.reject('出错了');
} catch(e) {
}
return await Promise.resolve('hello world');
}

然则大部分前端客户端代码处置惩罚都不怎样依靠环境也没有I/O操纵,都是本身写的代码,在明明白白地晓得本身的代码会发作毛病时,再运用try catch语句就不太适宜了,对应数据范例的毛病,发起小伙伴们用解构赋值指定默认值、&&||来躲避,所以慎用try catch。

foo = (obj = {}) => {
let obj1 = result || {};
if (obj && obj.code) {
console.log('obj.code',obj.code)
}
}

参考资料

  • https://raoenhui.github.io/js/2018/12/16/tryCatch
  • ECMAScript 2015 -The try Statement
  • https://developers.google.com/web/updates/2015/05/automatically-pause-on-any-exception
  • https://v8docs.nodesource.com/node-0.8/d4/da0/v8_8h_source.html

Happy coding .. :)


推荐阅读
author-avatar
阿蕓
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有