码迷,mamicode.com
首页 > 其他好文 > 详细

go interface

时间:2015-05-14 15:48:34      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

1 接口定义:

type iface_name interface{

  //....

}

 

2 接口实现

// 非空接口

type iface struct {

  tab     *itab

  data    unsafe.Pointer  // data *int

}

// 空接口

type iface struct {

  _type  *_type

  data    unsafe.Pointer  // data *int

}

type _type struct {

  size          uintptr

  hash        uint32

  _unused   uint8

  align         uint8

  fieldalign   uint8

  kind         uint8

      alg           unsafe.Pointer

      gc           [2]uintptr

      _string     *string

      x            *uncommontype

      ptrto       *_type

      zero        *byte

}

 

 

参考:

http://www.cnblogs.com/concurrency/p/4311958.html

 

go interface

标签:

原文地址:http://www.cnblogs.com/--xiaoyao--/p/4503108.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!