Java 手册
实例:
public class Length { public static void main(String[] args) { String str = "hgdfasyhgdilufg"; System.out.println(str.length()); }}
运行结果:
15
很简单的一个操作字符串的方法。
本文共 260 字,大约阅读时间需要 1 分钟。
public class Length { public static void main(String[] args) { String str = "hgdfasyhgdilufg"; System.out.println(str.length()); }}
运行结果:
15
很简单的一个操作字符串的方法。
转载于:https://www.cnblogs.com/chuijingjing/p/9489310.html