摘要:
https://programming.guide/normal-vs-subnormal-floats.html int __fpclassifyf(float x) { union {float f; uint32_t i;} u = {x}; int e = u.i>>23 & 0xff; i 阅读全文
摘要:
Go gRPC使用demo 准备工作: 1. 安装protobuf 编译环境 https://github.com/protocolbuffers/protobuf/releases 2. 安装go语言的protobuf代码转换工具protoc-gen-go go get -u github.com 阅读全文