在 Go 中,定义函数文字并将其传递给高阶函数是一种常见的做法。但是,在函数文字中使用范围变量可能会引发有关变量范围的问题。
在以下代码片段中:
<code class="go">func TestGetUID(t *testing.T) { namespace := "lkfm" expecteduid := "fake_uid" var tests = []struct { description string expected string namespace string objs []runtime.Object }{ {"PositiveScenario", expecteduid, namespace, []runtime.Object{simpleNamespace(namespace)}}, } for _, x := range tests { t.Run(x.description, func(t *testing.T) { client := fake.NewSimpleClientset(x.objs...) actual := getUID(client, x.namespace) assert.Equal(t, x.expected, actual) }) } }</code>
lint 检查器会引发错误:“在范围范围内使用变量函数文字中的 x (scopelint)”。
错误源于在传递给 t.Run() 的函数文字中使用循环变量 x。编译器不确定 t.Run() 返回后是否会调用函数文字。如果是,函数文字将引用循环变量,该变量可能会被下一次迭代的值覆盖。
要解决此问题,请修改将循环变量的值传递给函数文字或创建其副本的代码。由于函数签名是固定的,请按如下方式创建变量的副本:
<code class="go">x2 := x</code>
然后,在函数文字中引用 x2。这将满足 lint 检查器的要求。
或者,由于制作副本的意图很明确,因此副本和循环变量可以使用相同的名称:
<code class="go">x := x</code>
这将隐藏循环变量并使其成为函数文字的本地变量。
以上是如何解决 Go 中的'在函数文字 (scopelint) 中使用范围范围 x 上的变量”?的详细内容。更多信息请关注PHP中文网其他相关文章!