ausheng

Category - goframe

goframe是go语言的一种国内开源的框架

Go语言基础之字符串遍历

Go的字符串遍历,有两种方式: utf-8遍历unicode遍历 package main import "fmt" func main() { str := "Hello,世界" fmt.Println("Utf-8遍历") for i := 0; i < len(str); i++ { ch := str[i] fmt.Println(ch) } fmt.Println("Unicode遍历") for _, ch1...

Golang中的字符串

Golang 中的string类型存储的字符串是不可变的, 如果要修改string内容需要将string转换为[]byte或[]rune,并且修改后的string内容是重新分配的, 原字符串将被gc回收; package main import ( "fmt" ) func main() { s := "hi, go" fmt.Printf("value of str: %v\n", s) fmt.Printf("ptr of...

AUSHENG – BLOG

不要害羞,保持联系。我们喜欢结识有趣的人,结交新朋友。