Groovy - 字符串长度


语法- 字符串的长度由字符串的 length() 方法确定。

参数- 无参数。

返回值- 显示字符串长度的整数。

例子

以下是 Groovy 中字符串的使用示例 -

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

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

5
groovy_strings.htm