29_Go基础(结构体)
摘要:
1 package main 2 3 import ( 4 "encoding/json" 5 "fmt" 6 "unsafe" 7 ) 8 9 // 1. 自定义变量类型 10 type newInt int 11 type myInt = int 12 13 // 2. 定义结构体 14 typ 阅读全文
posted @ 2021-11-02 18:27 芦苇の 阅读(25) 评论(0) 推荐(0) 编辑