美文网首页
面向对象-继承

面向对象-继承

作者: 荒古遗尘狗贼 | 来源:发表于2019-08-08 12:51 被阅读0次

    go语言中不存在继承的概念,是通过匿名字段实现的。在下面的例子中可以看出来,现在是实例的代码段:

    package main

    import(

    "fmt"

    )

    type one struct{

    Name string

    Age int

    }

    type two struct{

    one 

    Address string

    }

    func main(){

    s:=two{"lisheng",23,"shandong"}

    fmt.Printf("s is %v\n",s)

    }

    相关文章

      网友评论

          本文标题:面向对象-继承

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