# 安装 MySQL 的安装可以参考这篇文章: https://www.cnblogs.com/2020javamianshibaodian/p/12920243.html # MySQL 的字符集 参考这篇文章 https://cloud.tencent.com/developer/article/1366841 # 导入数据 参考这篇文章 mysql 导入数据
# log 日志打印 const ( Ldate = 1 << iota // the date in the local time zone: 2009/01/23 Ltime // the time in the local time zone: 01:23:23 Lmicroseconds // microsecond resolution: 01:23:23.123123. assumes Ltime. Llongfile // full file name and line number: /a/b/c/d.go:23 Lshortfile //...
# go 语言学习 go 的初始化方式,要么用 a := or var a = # 切片 注意切片 b := a[1:2] fmt.Println(&b[0], &a[1])结果: 拥有相同的地址空间,也就是说,切片实际上只是一个引用。 var s2 = make([]int, 2)fmt.Printf("s2: %v\n", s2)s2 = append(s2, 1, 2, 3)fmt.Printf("s2: %v\n", s2)fmt.Println(len(s2))即使用 make...