首页 > 其他 > 详细

方法执行失败,重复执行指定次数某个方法

时间:2018-08-14 17:36:47      阅读:178      评论:0      收藏:0      [点我收藏+]
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();
            }
        }
    }

  执行结果:

技术分享图片

 

方法执行失败,重复执行指定次数某个方法

原文:https://www.cnblogs.com/liuqiyun/p/9475932.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!