通过 Type Interface 访问 Goroutine 中的自定义数据{}
在某些场景下,你可能会遇到需要访问传入的数据的情况作为使用 gojob 运行计划作业的 goroutine 的匿名结构。但是,直接访问其字段会导致错误“typeinterface{}isinterfacewithnomethods”。
要解决此问题,您必须在访问其之前将interface{}自定义数据显式转换为正确的类型字段。以下是修改代码的方法:
<code class="go">func NewJob(t string, name string, c func(), v interface{}) { ... jobs = append(jobs, job) }</code>
<code class="go">func Custom(name string) interface{} { ... return jobs[i].custom }</code>
现在,在预定的 Goroutine 中,您可以通过类型转换来访问匿名结构体的字段:
<code class="go">id := v.(struct{Id int}).Id</code>
这种显式类型断言确保您可以访问 Id 字段而不会遇到“未定义”错误。
以上是如何使用类型 Interface {} 访问 Goroutines 中的自定义数据?的详细内容。更多信息请关注PHP中文网其他相关文章!