douzhantanju1849 2016-08-13 16:02
浏览 464
已采纳

Golang动态变量参考

In Go, I would like to do something like this. I have a big object with many structs (using Google's protobuf). here is a contrived example:

person.name = "testing"
person.address.street = "123 test st"
person.address.city = "tester"
person.address.zip = 90210
person.billing.address.same = true

I would like to be able to dynamically reference things. for example:

key := "person.address.zip"
fmt.Println("the value of key: " + key) // would like to get 90210
key := "person.address.city"
fmt.Println("the value of key: " + key) // would like to get "tester"

Is this possible in Go? if so, how could I do that? essentially, I'm creating a report which only contains a subset of the object and I want to be able to create a mapping file where the user can map keys/values together and my program will output the value. I have this working in python, but wanted to try using Go :)

  • 写回答

2条回答 默认 最新

  • duandu6497 2016-08-14 03:42
    关注

    You may use func (v Value) FieldByName(name string) Value from reflect package:

    FieldByName returns the struct field with the given name. It returns the zero Value if no field was found. It panics if v's Kind is not struct.

    Like this working sample code:

    package main
    
    import "fmt"
    import "reflect"
    
    func main() {
        person := Person{}
        person.name = "testing"
        person.address.street = "123 test st"
        person.address.city = "tester"
        person.address.zip = 90210
        person.billing.address.same = true
    
        v := reflect.ValueOf(person)
        f := v.FieldByName("address")
        key := f.FieldByName("zip")
        fmt.Println(key)                   // 90210
        fmt.Println(f.FieldByName("city")) // tester    
    }
    
    type Person struct {
        name    string
        address Address
        billing Billing
    }
    type Billing struct {
        address Address
    }
    type Address struct {
        street, city string
        zip          int
        same         bool
    }
    

    output:

    90210
    tester
    

    And for your special case, you may use fmt.Println(field(person, "person.address.zip")), like this working sample code (just for demonstration):

    package main
    
    import "fmt"
    import "reflect"
    import "strings"
    
    func field(t interface{}, key string) reflect.Value {
        strs := strings.Split(key, ".")
        v := reflect.ValueOf(t)
        for _, s := range strs[1:] {
            v = v.FieldByName(s)
        }
        return v
    }
    func main() {
        person := Person{}
        person.name = "testing"
        person.address.street = "123 test st"
        person.address.city = "tester"
        person.address.zip = 90210
        person.billing.address.same = true
    
        fmt.Println(field(person, "person.address.zip"))  //90210
        fmt.Println(field(person, "person.address.city")) //tester
    }
    
    type Person struct {
        name    string
        address Address
        billing Billing
    }
    type Billing struct {
        address Address
    }
    type Address struct {
        street, city string
        zip          int
        same         bool
    }
    

    output:

    90210
    tester
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里