坚持为自己每月写1篇笔记

Retreat Hell!
We Just Got Here.

10 2021 档案

摘要:通过嵌套接口嵌套结构体实现OOP package main import "fmt" type aaa interface { man() } type bbb interface { women() } type tryinter interface { aaa bbb } type People 阅读全文
posted @ 2021-10-20 11:06 l||||||l 阅读(344) 评论(0) 推荐(0)
摘要:代码 package main import ( "bytes" "encoding/json" "fmt" "net/http" ) type BaseJsonBean struct { Status string `json:"status"` } func main() { fmt.Print 阅读全文
posted @ 2021-10-09 17:35 l||||||l 阅读(173) 评论(0) 推荐(0)