Groovy - next()

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


语法

String next()

参数

None


返回值

字符串的新值


示例

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

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

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

Hello World

❮ Groovy 字符串