如何查找数组列表的长度?

我不知道如何找到数组列表的长度。我认为你可能需要使用 blank.length();,但我不确定。

我做了一个数组列表

ArrayList<String> myList = new ArrayList<String>();

但是如何编写代码来打印出 myList 的大小呢?

591377 次浏览
System.out.println(myList.size());

因为列表中没有元素

输出 = > 0

myList.add("newString");  // use myList.add() to insert elements to the arraylist
System.out.println(myList.size());

因为列表中添加了一个元素

输出 = > 1