美文网首页
Go语言之type关键字

Go语言之type关键字

作者: 测试探索 | 来源:发表于2020-06-06 16:24 被阅读0次

    type是go语法里的重要而且常用的关键字,type绝不只是对应于c/c++中的typedef。搞清楚type的使用,几句容易理解go语言中的核心概念,struct,interface,函数等的使用

    1.定义结构体
    type person struct{
        name string //注意后面不能有逗号
        age int
    }
    
    2.定义接口
    type USB interface {
        start()
        end()
    }
    
    3.定义其他新的类型
    type 类型名 Type
    

    相关文章

      网友评论

          本文标题:Go语言之type关键字

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