美文网首页
类型和类

类型和类

作者: Linrundong | 来源:发表于2019-03-04 16:57 被阅读0次
    • golang里常规的类定义一般为如下形式:
    type $name struct{
      property01 int
      property02 int
      }
      
     func (t * name) tfunc() {}
    
    • 这里一直有个 误解:struct充当了其他语言中的class关键字
    • 其实在Golang里,类型就是类,所以我们说是类型的某个方法,类型实现了某个接口。
    • 以上定义应当解读为 property01是struct类型(别名name)的一个属性,tfunc是struct类型(别名name)的一个方法

    实际上method的定义可以依赖于所有的自定义类型。所谓自定义类型,就是通过type语句给一些内置类型起了个"别名"后所定义的新类型。

    type Sex string
    
    func (s *Sex) change(){
        if *s == Sex("女") {
            *s = Sex("男")
        }
    }
    
    • 以上定义应当解读为 tfunc是string类型(别名Sex)的一个方法

    相关文章

      网友评论

          本文标题:类型和类

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