码迷,mamicode.com
首页 > Windows程序 > 详细

C# 中Try Catch对效率影响

时间:2017-05-17 11:53:36      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:highlight   测试   exception   image   nbsp   images   使用   对比   越界   

当try{}内容不抛错时,使用try{}和正常执行并无明显差别

 以数组中取值为测试

int xi = test[1];  

循环100000000次测试结果如下

技术分享

 

 

当try{}内容抛错之时,与添加数组长度判断比较,test为长度为6位的List

以数组中取值为测试

try
 {
      int xi = test[7];
}
catch (Exception e)
 {

 }

int xi = test[test.Count - 1];

  

正常循环100000000次,catch越界错误循环1000次对比测试,

 技术分享

 

C# 中Try Catch对效率影响

标签:highlight   测试   exception   image   nbsp   images   使用   对比   越界   

原文地址:http://www.cnblogs.com/tianhenguhong/p/6866185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!