02_Go游戏-函数版学生管理系统
摘要:package main import ( "fmt" "os" ) type student struct { id int64 name string } var ( allStudent map[int64]*student ) // 构造函数 func newStudent(id int64
阅读全文
posted @ 2021-10-25 10:56
posted @ 2021-10-25 10:56
posted @ 2021-10-22 18:34