動態存取 Golang 中的結構體屬性
人們可能會遇到動態存取和更新 Go 中結構體屬性的需求。這可以使用 Reflect 套件來實現,它允許運行時反射以及類型和值的操作。
要按名稱設定結構體的字段,您可以使用 Reflect 套件來檢索字段的值並為其分配一個新值。這是實現此函數的函數:
// setField sets field of v with given name to given value. func setField(v interface{}, name string, value string) error { // v must be a pointer to a struct rv := reflect.ValueOf(v) if rv.Kind() != reflect.Ptr || rv.Elem().Kind() != reflect.Struct { return errors.New("v must be pointer to struct") } // Dereference pointer rv = rv.Elem() // Lookup field by name fv := rv.FieldByName(name) if !fv.IsValid() { return fmt.Errorf("not a field name: %s", name) } // Field must be exported if !fv.CanSet() { return fmt.Errorf("cannot set field %s", name) } // We expect a string field if fv.Kind() != reflect.String { return fmt.Errorf("%s is not a string field", name) } // Set the value fv.SetString(value) return nil }
要使用此函數,您可以這樣調用它:
var config SshConfig ... err := setField(&config, split[0], strings.Join(split[1:], " ")) if err != nil { // handle error }
此方法允許您動態設定結構體的值欄位不需要明確的if-else 語句或switch case。
以上是如何在 Go 中動態存取和更新結構體屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!