首页 >后端开发 >Golang >如何使用类型 Interface {} 访问 Goroutines 中的自定义数据?

如何使用类型 Interface {} 访问 Goroutines 中的自定义数据?

Patricia Arquette
Patricia Arquette原创
2024-11-03 20:13:03390浏览

How to Access Custom Data in Goroutines with Type Interface {}?

通过 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn