出现异常时再次执行代码的最佳方法是什么?

我正在开发一个应用程序,因此我需要使用具有与之关联的令牌的 Rest API。在特定时间间隔后,令牌已过期,因此在这种情况下,假设我尝试调用该 API 会引发异常。因此,要解决此问题,我应该刷新 catch 块中的令牌并使用 GoTo 再次执行 try 块。我阅读了几篇文章,其中大部分都建议避免使用 GoTo。

江户川乱折腾
浏览 168回答 3
3回答

守着星空守着你

只需在您的逻辑中放置一个重试计数并继续跳到循环的下一次迭代:&nbsp;int maxRetry = 10;&nbsp; &nbsp; &nbsp; &nbsp; for (int i = 0; i<=maxRetry; i++)&nbsp; &nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; try&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //DO YOUR STUFF&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; catch (Exception)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //OH NOES! ERROR!&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; continue; //RETRY!&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp; }当它尝试了 10 次后,它就会退出,仅此而已。您可以使用任何您喜欢的循环、while、do while 等来释放您的幻想。使用适合您需求的循环。如果有一些非常严重的错误需要停止循环的执行然后中断然后抛出异常并使用&nbsp; catch(VeryWrongException ex)&nbsp; {&nbsp; &nbsp; &nbsp; throw;&nbsp; }&nbsp;&nbsp; catch (Exception)&nbsp; {&nbsp; &nbsp; &nbsp; &nbsp;//OH NOES! ERROR!&nbsp; &nbsp; &nbsp; &nbsp;continue; //RETRY!&nbsp; }其中,VeryWrongException 是您要实际管理的异常类型,而不是使用之前的 catch 条件。额外:要了解您的代码可以生成和捕获什么样的异常,请使用智能感知,这是您的朋友:

回首忆惘然

如果使用不当,使用 GoTo 重试相同逻辑的 Catch 语句可能会很危险。处理此问题的更好方法是编写一些重试逻辑,该逻辑将尝试执行您的任务有限的次数,理想情况下允许您指定您的异常。如果你不想自己写重试逻辑,我可以推荐你使用外部库,比如Polly其用法示例如下:// Set up the policyvar retryPolicy = Policy&nbsp; &nbsp; .Handle<Exception>()&nbsp; &nbsp; .WaitAndRetry(&nbsp; &nbsp; 3,&nbsp; &nbsp; retryAttempt => TimeSpan.FromSeconds(5 * retryAttempt)&nbsp; &nbsp; );// Attempt to send the message, use Polly to retry a maximum of three times.retryPolicy.Execute(() =>{&nbsp; &nbsp; // Your Code});

达令说

恐怕你试图在错误的地方解决这个问题。如果您对 API 的请求由于令牌过期而失败,您应该只抛出异常。另一个类,也许是首先负责发起请求的类,可以解决错误(刷新令牌)并重试请求数据。如果您将所有这些职责合并到一个地方,事情可能会很快变得复杂。
打开App,查看更多内容
随时随地看视频慕课网APP