java语言中
针对数组提供了length属性来获取数组的长度
针对字符串提供了length()方法来获取字符串的长度
针对泛型集合类提供了size()方法来获取元素的个数
public class TestDemo {
public static void testArray(int[] arr) {
("数组的的length属性:" + );
}
public static void testString(String s) {
("字符串中的length()方法:" + ());
}
public static void testGeneric(List list) {
("泛型集合中的size()方法:" + ());
}
public static void main(String[] args) throws UnsupportedEncodingException {
int[] arr = { 1, 2, 3, 4, 5, 6 };
String str = "12345";
List<Integer> list = new ArrayList<Integer>();
(1);
(2);
(3);
testArray(arr);// 测试数组的长度
testString(str);// 测试字符串的长度
testGeneric(list);// 测试list列表的长度
}
}
结果:
数组的的length属性:6
字符串中的length()方法:5
泛型集合中的size()方法:3