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

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

Patricia Arquette
Patricia Arquette原創
2024-11-03 20:13:03337瀏覽

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