Syntax - 由字符串的length()方法确定的字符串的长度。
Parameters - 无参数。
Return Value - 显示字符串长度的整数。
以下是Groovy中字符串用法的示例 -
class Example { static void main(String[] args) { String a = "Hello"; println(a.length()); } }
当我们运行上述程序时,我们将得到以下结果 -
5