共计 324 个字符,预计需要花费 1 分钟才能阅读完成。
要获取 ArrayList 的长度,可以使用 ArrayList 的 size() 方法。该方法返回 ArrayList 中元素的个数。
示例代码如下:
import java.util.ArrayList;
public class Example {public static void main(String[] args) {ArrayList list = new ArrayList();
list.add("A");
list.add("B");
list.add("C");
int length = list.size();
System.out.println("ArrayList 的长度为:" + length);
}
}
输出结果为:
ArrayList 的长度为:3
丸趣 TV 网 – 提供最优质的资源集合!
正文完