管理未检查返回值的延迟函数
使用 gometalinter 和 errcheck 时,开发人员可能会遇到有关延迟函数返回变量而不进行检查的警告对于错误。这通常发生在关闭请求正文等场景中,其中 Close() 方法返回错误值。
要解决此问题,建议的方法是推迟另一个调用原始函数并检查其返回值的函数价值。这可以使用匿名函数来实现,如下所示:
<code class="go">defer func() { if err := r.Body.Close(); err != nil { // Handle the error } }()</code>
另一种解决方案是创建一个执行错误检查的辅助函数:
<code class="go">func Check(f func() error) { if err := f(); err != nil { // Handle the error } }</code>
此辅助函数可以用于延迟原始函数:
<code class="go">defer Check(r.Body.Close)</code>
对于多个延迟函数,可以创建一个修改后的助手来接受函数数组:
<code class="go">func Checks(fs ...func() error) { // Implement error checking and execution logic }</code>
使用此助手:
<code class="go">defer Checks(r.Body.Close, SomeOtherFunc)</code>
Checks() 帮助器中的向下循环确保最后一个延迟函数首先执行,从而保留延迟函数的执行顺序。
以上是如何在 Go 中安全地延迟具有可能未经检查的返回值的函数?的详细内容。更多信息请关注PHP中文网其他相关文章!