摘要: 1、Go的String其实是类切片的数据结构 package main import ( "fmt" String "modLearn/String/demo" ) func main() { s := "hello world" for i := 0; i < len(s); i++ { u := 阅读全文
posted @ 2022-01-08 15:09 yatolk 阅读(115) 评论(0) 推荐(0) 编辑