https://studygolang.com/articles/819 原文链接
Introduction
The Go memory model specifies the conditions under which reads of a variable in one goroutine can be guaranteed to observe values produced by ...……
go version go1.11 windows/amd64
本文为阅读Go语言中文官网的规则说明书(https://golang.google.cn/ref/spec)而做的笔记,介绍Go语言的 select语句(Select statements)。
前面写了 Go语句、通道类型(也 ...……
一.基本语法
var a mapstring //var 变量名 mapvalues数据类型
//map的空值 nil
if a==nil{
fmt.Println(a)
}
//a如果没有make操作将无法进行赋值
//进行了make操作a也不再是nil
//对于map进行赋值
func mai ...……