erikwang2013/erikwang2013.github.io

go中类型转换 | 艾瑞可erik

Opened this issue · 0 comments

https://erik.xyz/2022/06/05/go-type-change/

go中类型转换的搜集 123456func StringToInt(a string) int { d, _ := strconv.Atoi(a) return d}