Groovy - plus()

追加一个字符串


语法

String plus(Object value) 

参数

Value − 追加到字符串的对象


返回值

此方法返回结果字符串。


示例

以下是该方法的用法示例 −

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

当我们运行上面的程序时,会得到下面的结果 −

HelloWorld 
HelloWorld Again

❮ Groovy 字符串