09 2023 档案
摘要:protobuf message关键字 类似于C++中的class,java中的class,go中struct,例如 在消息中承载的数据分别对应于每一个字段, 其中每个字段都有一个名字和一种类型。 message User { string username = 1; int32 age = 2;
阅读全文
摘要:废弃ioutil包后的替换函数 ioutil.ReadAll -> io.ReadAll ioutil.ReadFile -> os.ReadFile ioutil.ReadDir -> os.ReadDir others ioutil.NopCloser -> io.NopCloser iouti
阅读全文