博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
try-catch-finaly
阅读量:6320 次
发布时间:2019-06-22

本文共 765 字,大约阅读时间需要 2 分钟。

class Program

{
static string result1 = null;
static void Main(string[] args)
{
string result= printresult();
Console.WriteLine("result Say :\nMy Value Is " + result);
Console.WriteLine("result1 Say :\nMy Value Is" + result1);
Console.ReadKey();
}
static string printresult()
{
string s = "haha";
int a = 0;
try
{
a = Convert.ToInt32(s);//异常出现
result1 = "i am trying...";
return "我try完了,回去";
}
catch (Exception e)
{
result1 = "i am catch...";
return "我catch完了,回去";
}
finally
{
result1="我finally完了,回去";//这里的语句不管try-catch结果如何,都会执行。但允许写return语句
}
result1="完了,i have to go";//提示无法访问的代码,因为try和catch都有返回值,这句话没机会执行了
return result1;
}//返回值是:"我catch完了,回去";
}

 

结论:finally语句无论try-catch结果如何都会执行,执行完才会执行try-catch中的return语句(如果有的话)

转载于:https://www.cnblogs.com/sulong/p/5015384.html

你可能感兴趣的文章
【重发】终于提交了项目第一个版本到git@osc了。兴奋ing
查看>>
yii2的model数据库配置以及应用(主从数据库配置)
查看>>
iOS设计模式——中介者模式
查看>>
nginx配置websocket代理
查看>>
Oracle中的NULL(二、NULL详解)
查看>>
Jboss RestEasy构建简单的RESTful Web Services示例(1)
查看>>
502与504错误分析
查看>>
Nginx如何实现支持HTTPS协议详细说明
查看>>
《AOSuite 开发手册》之AOSuite 服务端开发
查看>>
年过35岁的程序员都去哪儿了
查看>>
ActiveMQ消息中间件简明笔记(1)——理论知识点整理
查看>>
Hibernate 事务总结
查看>>
tomcat优化设置
查看>>
安装kubernetes1.12.1的 dashboard v1.10 + Heapster
查看>>
eclipse运行 Maven Test命令时控制台输出乱码的解决办法
查看>>
Spring3+MyBatis3整合无法输出SQL语句问题的解决
查看>>
java.security.InvalidKeyException: Illegal key size异常解决
查看>>
JAVA正则表达式高级用法(分组与捕获)
查看>>
数据导入报错:Got a packet bigger than‘max_allowed_packet’bytes的问题
查看>>
【ASP的重生】KnifeCMS.ASP跨平台支持包(支持Unix/Linux)
查看>>