对数值类型,Go语言提供了常规的数值和逻辑运算符。而对string类型,+运算符连接字符串(译注:和C++或者js是一样的)。所以表达式:
s:="hello"
sep:=s+" world"
2.格式化拼接
格式化在逻辑中非常常用,写法:
fmt.Sprintf(格式化样式, 参数列表…)
格式化样式:字符串形式,格式化动词以%开头。
参数列表:多个参数以逗号分隔,个数必须与格式化样式中的个数一一对应,否则运行时会报错。
fmt.Sprintf("hellow %s","world") //输出hellow world
fmt.Sprintf("hellow %s %d","int ",2) //输出hellow int 2
fmt.Sprintf("hellow %s %v","interface ",2.12333) //输出hellow interface 2.12333
3.strings.Join
如果连接涉及的数据量很大,第一种方式代价高昂。一种简单且高效的解决方案是使用strings包的Join函数:
arr := []string{"hello", "world"}
fmt.Println(strings.Join(arr, " "))