当前位置:   article > 正文

java ArrayList 使用心得与总结

java实现arraylist心得与体会

在用 c 语言 或 C++ 时,我遇到的最大麻烦就是动态数组的内存释放了,经常容易出错。


而 java 的 ArrayList 类 很好的解决了这个问题,它类似于 C++ 中的容器类 vector,自带很多方法对数组操作。

详细的介绍可以参看 oracle 的文档:

https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html


1. 构造方法:

(1)ArrayList()

构造一个空的数组,默认容量是 10


(2)ArrrayList(int initialCapacity)

构造一个指定容量的空数组,当增加数据导致容量不足时,容量默认增加上次容量大小的一半


(3)ArrayList(Collection<? extends E> c)

这一点不是很好理解,它其实表示生成一个与括号内数组一样的另一个数组,括号内的数组能够继承生成后的数组。 


使用时

 Arraylist<Object> list=new Arraylist<Object> ();

<>以及里面的内容可以省略,但编译器会给出提示,最好还是带上。

println 可以直接打印整个数组,举例:

  1. public class ArrayListTest {
  2. class Human{
  3. }
  4. class Male extends Human{
  5. }
  6. public static void main(String[] args) {
  7. // TODO Auto-generated method stub
  8. ArrayList<Integer> list1=new ArrayList<Integer>();
  9. list1.add(1);
  10. list1.add(2);
  11. list1.add(3);
  12. System.out.println(list1);
  13. ArrayList<Integer> list2=new ArrayList<Integer>(list1);
  14. System.out.println(list2);
  15. ArrayList<Male>list3=new ArrayList<Male>();
  16. ArrayList<Human>list4=new ArrayList<Human>(list3);
  17. System.out.println(list3);
  18. System.out.println(list4);
  19. }
  20. }


输出:

[1, 2, 3]
[1, 2, 3]
[]
[]

2. ArrayList 中常用的方法

add(E e):                     在数组末尾添加元素

size():                           数组中实际元素个数,并不是数组容量

add(int index, E e):    在数组指定位置添加元素

clear():                         将数组中元素清空

contains(E e):             判断数组中是否含有某个元素

get(int index):             返回数组指定位置的元素

indexOf(E e):              返回数组指定元素第一次出现的位置

set(int index, E e):     替换数组指定位置的值

remove(int index):     移除数组指定位置的元素

remove(E e):              移除数组中第一次出现的指定元素

addAll(Collection<? extends E> c):                     在数组末尾添加另一个数组 

addAll(int index, collection<? extends E> c):     在数组指定位置添加另一个数组 

removeAll(Collection<?>c):                                   将数组中属于数组 c 中的元素全部删除


举例:

  1. import java.util.ArrayList;
  2. import java.util.Arrays;
  3. public class ArrayListTest {
  4. class Human{
  5. }
  6. class Male extends Human{
  7. }
  8. public static void main(String[] args) {
  9. ArrayList<Integer> list1=new ArrayList<Integer>();
  10. list1.add(1); // Appends the specified element to the end of this list
  11. list1.add(2);
  12. list1.add(3);
  13. System.out.println(list1.size());
  14. System.out.println(list1);
  15. list1.add(2,4); // Inserts the specified element at the specified position in this list
  16. System.out.println(list1);
  17. list1.clear(); // Removes all of the elements from this list
  18. System.out.println(list1);
  19. list1.add(5);
  20. ArrayList<Integer> list2=new ArrayList<Integer>();
  21. list2.add(1);
  22. list2.add(2);
  23. list2.add(3);
  24. list2.addAll(list1); // Appends all of the elements in the specified collection to the end of this list
  25. System.out.println(list2);
  26. System.out.println(list2.contains(5)); // Judge if this list contains the specified element
  27. System.out.println(list2.get(2)); // Returns the element at the specified position in this list
  28. System.out.println(list2.indexOf(5)); // Returns the index of the first occurrence of the specified element, or -1 if this list doesn't contain
  29. list2.set(2, 10); // Replaces the element at the specified position in this list with the specified element
  30. System.out.println(list2);
  31. list2.remove(2); // Removes the element at the specified position in this list
  32. System.out.println(list2);
  33. list2.remove(Integer.valueOf(1)); // Removes the first occurrence of the specified element from this list, if it is present
  34. System.out.println(list2);
  35. list2.removeAll(Arrays.asList(5)); // Removes from this list all of its elements that are contained in the specified collection
  36. }
  37. }


输出结果:

3
[1, 2, 3]
[1, 2, 4, 3]
[]
[1, 2, 3, 5]
true
3
3
[1, 2, 10, 5]
[1, 2, 5]
[2, 5]

转载于:https://www.cnblogs.com/robinchen/p/11047698.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/77303
推荐阅读
相关标签
  

闽ICP备14008679号