This commit is contained in:
邹宗楠
2023-08-30 11:58:09 +08:00
parent 1c76565c02
commit 82eba6b49c
3 changed files with 62 additions and 12 deletions

View File

@@ -104,3 +104,14 @@ func TestNewPool(t *testing.T) {
pool.Stop()
}
func TestCC(t *testing.T) {
var aa map[string]string
aa = make(map[string]string, 10)
fmt.Println(aa)
aa["1"] = "2"
c, d := aa["1"]
fmt.Println(c)
fmt.Println(d)
}