ArrayList<Integer> a,b;
a.add(0)
b.add(0)
a.get(0)==b.get(0)为false
a.get(0).equals(b.get(0))为true
ArrayList<Integer> a,b;
a.add(0)
b.add(0)
a.get(0)==b.get(0)为false
a.get(0).equals(b.get(0))为true
转载于:https://www.cnblogs.com/idontknow/archive/2013/04/24/3041284.html