如何查找数组列表的长度?
我不知道如何找到数组列表的长度。我想你可能需要使用,但我不确定。blank.length();
我做了一个数组列表
ArrayList<String> myList = new ArrayList<String>();
但是我如何编写代码来打印出myList的大小?
我不知道如何找到数组列表的长度。我想你可能需要使用,但我不确定。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