如何查找数组列表的长度?
我不知道如何查找数组列表的长度。 我想你可能需要使用blank.length();
但我不确定。
我做了一个数组列表
ArrayList<String> myList = new ArrayList<String>();
但是如何编写代码来打印myList的大小呢?
System.out.println(myList.size());
由于列表中没有元素
输出=> 0
myList.add("newString"); // use myList.add() to insert elements to the arraylist System.out.println(myList.size());
由于一个元素被添加到列表中
输出=> 1