首頁 > 後端開發 > Golang > 如何使用類型 Interface {} 存取 Goroutines 中的自訂資料?

如何使用類型 Interface {} 存取 Goroutines 中的自訂資料?

Patricia Arquette
發布: 2024-11-03 20:13:03
原創
381 人瀏覽過

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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板