Groovy - 字符串连接


句法

字符串的连接可以通过简单的“+”运算符来完成。

String+String

参数- 参数将是 2 个字符串,作为 + 运算符的左右操作数。

返回值- 返回值是一个字符串

例子

以下是 Groovy 中字符串连接的示例。

class Example {
   static void main(String[] args) {
      String a = "Hello";
      String b = "World";
		
      println("Hello" + "World");
      println(a + b);
   }
}

当我们运行上面的程序时,我们将得到以下结果 -

HelloWorld
HelloWorld
groovy_strings.htm