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