使用尝试捕获块的异常 [英] Using Exception Insted of Try Catch Block

查看:71
本文介绍了使用尝试捕获块的异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好朋友,


谁能告诉我,如果我使用的是什么异常而不是Try Catch.

Hello Friends,


Can anyone tell me that if What exception i am using instead of Try Catch.

推荐答案

Try catch也不例外. try catch用于捕获异常.

Try catch is not an exception. Try catch is used to catch an exception.

try
{
   // Do something that can fail..
}
catch (Exception ex)
{
   // Log exception and do something to gently 
   // tell your user that something went wrong
}
finally
{
   // Close database connections etc. if required.
}


这篇关于使用尝试捕获块的异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆