#字符串原理
1.go的string是utf-8编码,rune相当于一个utf码点,所以string==rune[]
2.用for i,j := range str时,i是当前字符在字节数组的下标,j是对应的字符