获取数组长度
int[] nums = new int[10];
int n = nums.length;
获取字符串长度
String word = new String(“hello");
int n = word.length();
因为 .length获取属性 .length()调用方法。
JAVA .length与.length()
原文:https://www.cnblogs.com/gotosea/p/14886554.html