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_strings.htm