Groovy - 字符串长度
Syntax − 字符串的长度由字符串的length()方法决定。
参数 − 没有参数。
返回值 − 显示字符串长度的 Integer。
示例
以下是 Groovy 中字符串的使用示例 −
class Example { static void main(String[] args) { String a = "Hello"; println(a.length()); } }
当我们运行上面的程序时,会得到下面的结果 −
5
Syntax − 字符串的长度由字符串的length()方法决定。
参数 − 没有参数。
返回值 − 显示字符串长度的 Integer。
以下是 Groovy 中字符串的使用示例 −
class Example { static void main(String[] args) { String a = "Hello"; println(a.length()); } }
当我们运行上面的程序时,会得到下面的结果 −
5
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。