go struct结构

Posted jack-cx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go struct结构相关的知识,希望对你有一定的参考价值。

1.自定义数组类型

type dics struct {
        hello string
        id    int
        value float32
    }
//申明变量 为定义的类型,传值
    var a dics
    a.hello = “go语言”
    a.id = 2
    a.value = 1.21

  

2.、自定义变量类型,赋给指针

func main() {
    type dics struct {
        hello string
        id    int
        value float32
    }

    var a dics
    a.hello = "goèˉ-言"
    a.id = 2
    a.value = 1.21

    var aa *dics
    aa = &a
    fmt.Println(aa.hello)

}

  

以上是关于go struct结构的主要内容,如果未能解决你的问题,请参考以下文章

Go基础学习四之函数function结构struct方法method

go语言中struct结构体的使用

go语言之行--结构体(struct)详解链表

Go 空结构体 struct 的使用

Go的Struct结构体和(Json Form tag)

Go语言学习笔记-结构体(Struct)