空结构体指没有元素的结构体:type s struct{} 特性不占空间: sizeof(s{}) == 0所有的实例的地址都相同: &s{} == &s{}https://play.golang.org/p/Z-y-cGQgtkQ参考资料The empty structgolang