```
type ServiceTypeEnum uint32
type avpUint32Enum struct {
t interface{}
}
type attributeTypeDesc struct {
name string
dataType avpDataType
}
type avpDataType interface {
Value(p *Packet, a AVP) interface{}
String(p *Packet, a AVP) string
}
attributeTypeMap = [1]attributeTypeDesc{
0: {"ServiceType", avpUint32Enum{ServiceTypeEnum(0)}},
}
```
###### 本人新手,这是在学习别人代码的时候遇到的,数组第一个元素是一个attributeTypeDesc 结构体,name为ServiceType,
dataType 为 avpUint32Enum{ServiceTypeEnum(0)}。这里avpUint32Enum肯定实现了avpDataType 接口,实现的代码就不贴出来了。
###### ServiceTypeEnum是底层uint32类型,这里应该需要一个t interface{}空接口,表示接受任何变量。我的问题是:那么ServiceTypeEnum(0)这种用法是什么意思?
**或者换句话问:go中 int32(0) 是一种什么 用法?**
有疑问加站长微信联系(非本文作者)