gpt4 book ai didi

java - 处理未使用的 return 语句

转载 作者:行者123 更新时间:2023-12-01 11:35:53 24 4
gpt4 key购买 nike

我有以下代码:

public static QHttpResponse SafeExecute(QHttpRequest request, int retries, int sleep)
{
if (retries < 1)
throw new Exception("retries must be at least 1");

for (int index = 0; index < retries; index++)
{
try
{
return QWebClient.Execute(request);
}
catch (Exception)
{
if (index == retries - 1)
throw;

Thread.Sleep(sleep);
}
}

return null;
}

此函数中的第二个 return 从未执行任何操作。使用 return nullthrow new Exception("Shouldn't be Here") 会更好吗?

或者我应该通过将结果存储在变量中并返回它来完全避免这种情况吗? (这似乎没有必要)

最佳答案

是的,对于设计上应该无法访问的路径,抛出异常是有意义的。也作为一种明确的方式来记录您的方法的预期操作。

“InvalidLogicException”会很好,但不存在。

在 C# 中,最“合适”的可用异常类型可能是以下类型之一:

throw new InvalidProgramException("BUG: This code should be unreachable by design");
throw new InvalidOperationException("BUG: This code should be unreachable by design");
throw new NotSupportedException("BUG: This code should be unreachable by design");

关于java - 处理未使用的 return 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29998345/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com