Groovy - 下一个()


该方法由 String 类的 ++ 运算符调用。它增加给定字符串中的最后一个字符。

句法

String next()

参数

没有任何

返回值

字符串的新值

例子

以下是此方法的使用示例 -

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

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

Hello World
groovy_strings.htm