方法执行失败,重复执行指定次数某个方法
Posted 刘奇云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了方法执行失败,重复执行指定次数某个方法相关的知识,希望对你有一定的参考价值。
class Program { static void Main(string[] args) { Test(); Console.ReadKey(); } static void Test() { var currentThreadId = Thread.CurrentThread.ManagedThreadId.ToString(); int tryTimes = 5; int connectTime = 0; while (true) { try { Console.WriteLine("currentThreadId:"+ currentThreadId+ "******connectTime:" + connectTime); Exception aa = null; string bb = aa.ToString(); return; } catch (Exception ex) { operateException(currentThreadId, tryTimes,ref connectTime); } } } static void operateException(string CurrentThreadId,int TryTimes,ref int ConnectTime) { if (TryTimes >= ConnectTime) { ConnectTime++; Thread.Sleep(2000); } else { throw new Exception(); } } }
执行结果:
以上是关于方法执行失败,重复执行指定次数某个方法的主要内容,如果未能解决你的问题,请参考以下文章