简单类型 / 字符串

var s1 = "three";
var s2 = "two";
var s3 = s1 + ", " + s2;
s3 += ", one";
var sGo = s3.concat(", ").concat("go!");
//sGo is "three, two, one, go!"

System.out.printf("sGo is '%s'", sGo);