JavaScript异常执行顺序

JavaScript异常

try-catch finally
try 必须跟catch或者finally。

执行顺序案例1:

try{
  try{	
    throw new Error('opps');//出现异常需要跳异常处理,内部没有catch,跳外部。
  }
  finally{
    console.log("finally");//跳外部异常前先执行"finally"
  }
}
catch(ex){
  console.error("outer",ex.message);//跳异常处理,输出outer 后 输出opps
}

执行顺序:finally outer opps

执行顺序案例2:

try{
  try{	
    throw new Error('opps');//出现异常需要跳异常处理,内部catch,。
  }
  catch(ex){
   console.error("inner",ex.message);//跳异常 inner opps
  }
  finally{
    console.log("finally"); //执行"finally"
  }
}
catch(ex){
  console.error("outer",ex.message);//异常处理,不输出
}

执行顺序:inner opps finally

执行顺序案例3:

try{	
  try{
    throw new Error('opps');  //出现异常需要跳异常处理,内部catch。
  }
  catch(ex){
   console.error("inner",ex.message);//跳异常 inner opps
   throw ex;//又抛出异常
  }
  finally{
    console.log("finally"); //跳异常先执行"finally"
  }
}
catch(ex){
  console.error("outer",ex.message);//异常处理,输出outer opps
}

执行顺序:inner opps finallyouter opps

总结:先执行内部的try catch finally,如果有异常就执行外部异常。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值