go --struct

前端之家收集整理的这篇文章主要介绍了go --struct前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

准备把平时的笔记搬到这个上面来

About Struct
  1. 空值得struct
   type emptyStruct struct {
        age int
     name string
     sex string
     habby string
   }    

var a interface
///这里创建一个空的struct,其中默认值为对应值的控制
a = new(emptyStruct)

原文链接:https://www.f2er.com/note/411535.html

猜你在找的程序笔记相关文章