为了账号安全,请及时绑定邮箱和手机立即绑定

从 Go 中的实例打印结构定义

从 Go 中的实例打印结构定义

Go
手掌心 2023-05-04 16:51:39
我正在寻找一个 lib 或片段,它允许(漂亮地)打印结构实例的内容而不是它的结构。下面是一些代码和预期的输出:package mainimport "fantastic/structpp"type Foo struct {    Bar string    Other int}func main() {    i := Foo{Bar: "This", Other: 1}    str := structpp.Sprint{i}    fmt.Println(str)}会打印(这个或类似的):Foo struct {    Bar string    Other int}   请注意,我知道github.com/davecgh/go-spew/spew但我不想漂亮地打印数据,我只需要结构的定义。
查看完整描述

2 回答

?
摇曳的蔷薇

TA贡献1793条经验 获得超6个赞

这样的事情行得通吗?可能需要根据您的特定结构和用例进行一些调整(是否要打印接口{},其中值实际上是一个结构等)


package main


import (

    "fmt"

    "reflect"

)


func printStruct(t interface{}, prefix string) {

    s := reflect.Indirect(reflect.ValueOf(t))

    typeOfT := s.Type()


    for i := 0; i < s.NumField(); i++ {

        f := s.Field(i)


        fmt.Printf("%s%s %s\n", prefix, typeOfT.Field(i).Name, typeOfT.Field(i).Type)

        switch f.Type().Kind() {

        case reflect.Struct, reflect.Ptr:

            fmt.Printf("%s{\n", prefix)

            printStruct(f.Interface(), prefix+"\t")

            fmt.Printf("%s}\n", prefix)


        }

    }

}

然后,对于这个结构:


type C struct {

    D string

}


type T struct {

    A int

    B string

    C *C

    E interface{}

    F map[string]int

}


t := T{

    A: 23,

    B: "hello_world",

    C: &C{

        D: "pointer",

    },

    E: &C{

        D: "interface",

    },

}

你得到:


A int

B string

C *main.C

{

    D string

}

E interface {}

F map[string]int

Go Playground 链接:https://play.golang.org/p/IN8-fCOe0OS


查看完整回答
反对 回复 2023-05-04
?
杨魅力

TA贡献1811条经验 获得超6个赞

除了使用反射,我看不到其他选择


func Sprint(v interface{}) string {


    t := reflect.Indirect(reflect.ValueOf(v)).Type()


    fieldFmt := ""


    for i := 0; i < t.NumField(); i++ {

        field := t.Field(i)

        fieldFmt += "\t" + field.Name + " " + field.Type.Name() + "\n"

    }


    return "type " + t.Name() + " struct {\n" + fieldFmt + "}"

}

请注意,尽管此函数没有验证/检查,并且可能会对非结构输入造成恐慌。


编辑:去游乐场:https://play.golang.org/p/5RiAt86Wj9F


哪些输出:


type Foo struct {

    Bar string

    Other int

}


查看完整回答
反对 回复 2023-05-04
  • 2 回答
  • 0 关注
  • 106 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信