var bytes =[...]byte{100,110}
string(bytes[0:])
string str="hello"
[]byte(str)
string(bytes[0:])
string str="hello"
[]byte(str)
import "strconv"
b, err := strconv.ParseBool("true") f, err := strconv.ParseFloat("3.1415", 64) i, err := strconv.ParseInt("-42", 10, 64)
评论
发表评论