JS中的异常exception

Posted CNundefined

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS中的异常exception相关的知识,希望对你有一定的参考价值。

 

js提供了一套异常处理机制。异常是干扰程序的正常流程的不寻常事故,当发生这样的事故时,你的程序应该抛出一个异常

           try_it() {
                try {
                    console.log(add("1",2))
                }catch(e){
                    console.log(e.name + ‘:‘ + e.message)
                }

            },
            add(a,b) {
                if(typeof a != "number" || typeof b != "number"){
                    throw{
                        name:‘typeErr‘,
                        message:‘you should enter a number‘
                    }
                }
                return a+b
            }
       try_it()

 



以上是关于JS中的异常exception的主要内容,如果未能解决你的问题,请参考以下文章

异常处理 Exception

python----有关异常的基础

Java中的异常

Java 中的两种异常(Checked exceptions 和 Unchecked exceptions)

处理异常 ‘try’——‘except’ 方法

CentOS 服务器中的 com.mysql.jdbc.exceptions.MySQLSyntaxErrorException 异常