美文网首页
go 结构体、方法、接口

go 结构体、方法、接口

作者: 老鼠慎言 | 来源:发表于2020-12-18 17:13 被阅读0次
    package main
    
    import "fmt"
    
    func main() {
        type Books struct {
            title   string
            author  string
            subject string
            book_id int
        }
        s := Books{"ask", "jane", "math", 123}
        fmt.Print(s)
    
    }
    

    输出

    {ask jane math 123}
    

    相关文章

      网友评论

          本文标题:go 结构体、方法、接口

          本文链接:https://www.haomeiwen.com/subject/vqkfnktx.html