Groovy - previous()

此方法返回结果字符串。


语法

String previous()

参数

None


返回值

此方法返回结果字符串。


示例

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

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

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

Helln

❮ Groovy 字符串