摘要:
1.goruntine 机制 参考地址:http://blog.csdn.net/liangzhiyang/article/details/52669851 2.匿名函数,内联函数:https://studygolang.com/articles/7277 阅读全文
摘要:
1.reflect.DeepEqual 深层次判断 map的内容是否都一样 阅读全文
摘要:
1. 断言: 参考 https://studygolang.com/articles/3314 var.(T)类型断言失败时会返回T类型的“0值”,而不是变量原始值。 var是要判断的变量,T类型,例如:sss.(string),T是type最好用的是interface或者一个strcut 其中va 阅读全文