go 字符串拼接

s := "hello,"
m := " world"
a := s + m
fmt.Printf("%s
", a)
原文地址:https://www.cnblogs.com/sea-stream/p/10301060.html