golang-interface

  1. one type implements all methods of one interface => the type implement the interface
  2. every type has already implemented “interface{}”
  3. every type can be “wrapped in box” and “unpack the box” by using a “type assertion” and “type conversion” to interface which it has implemented
  4. in fact the type interface{}, which is called the empty interface type, is indispensable. Because the empty interface type places no demands on the types that satisfy it, we can assign any value to the empty interface --from TGPL
  5. type tySt struct {n int}, the type “*tySt” can use the mothods of type “tySt”, also in reverse. but *tySt contains *tySt and tySt mothod set, tySt only contain tySt mothod set when assigning to a interface, as well as “*tySt” and “tySt” can’t have the same name method, because implicit type-casting
  6. the empty interface “interface{}” includes “eface” structure, the non-empty interface has “iface” structure
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值