2022年4月1日

摘要: 1、指针的定义 func newPoint() { var a int = 10 //定义整数型指针 var p *int //此时出现nullpoint,因为p不知道指向的内存地址 fmt.Println(p) //同样报错,p没有指向的地址 *p = 67 fmt.Println(*p) p = 阅读全文
posted @ 2022-04-01 22:14 无锡-小松 阅读(42) 评论(0) 推荐(0) 编辑
 
摘要: 1、创建结构体 func createStruct() { //结构体中的成员变量不能加var关键字 type Student struct { id int name string age int addr string } } 2、结构体初始化 func createStruct() { //结 阅读全文
posted @ 2022-04-01 20:27 无锡-小松 阅读(42) 评论(0) 推荐(0) 编辑