Groovy 字符串连接
2018-12-29 16:17 更新
语法
字符串的串联可以通过简单的\'+\'运算符来完成。
String+String
参数 - 参数将为2个字符串作为& plus;的左右操作数。 运算符。
返回值 - 返回值是一个字符串
例子
以下是Groovy中字符串连接的示例。
class Example { static void main(String[] args) { String a = "Hello"; String b = "World"; println("Hello" + "World"); println(a + b); } }
当我们运行上面的程序,我们将得到以下结果 -
HelloWorld HelloWorld
以上内容是否对您有帮助:
更多建议: