- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Java中ArrayList类的用法与源码完全解析由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
System.Collections.ArrayList类是一个特殊的数组。通过添加和删除元素,就可以动态改变数组的长度.
一.优点 1. 支持自动改变大小的功能 2. 可以灵活的插入元素 3. 可以灵活的删除元素 。
二.局限性 跟一般的数组比起来,速度上差些 。
三.添加元素 1.publicvirtualintAdd(objectvalue); 将对象添加到ArrayList的结尾处 。
1
2
3
4
5
6
|
ArrayList aList =
new
ArrayList();
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"c"
);
aList.Add(
"d"
);
aList.Add(
"e"
);
|
内容为 。
1
|
abcde
|
2.publicvirtualvoidInsert(intindex,objectvalue); 将元素插入ArrayList的指定索引处 。
1
2
3
4
5
6
7
|
ArrayList aList =
new
ArrayList();
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"c"
);
aList.Add(
"d"
);
aList.Add(
"e"
);
aList.Insert(
0
,
"aa"
);
|
结果为 。
1
|
aaabcde
|
3.publicvirtualvoidInsertRange(intindex,ICollectionc); 将集合中的某个元素插入ArrayList的指定索引处 。
1
2
3
4
5
6
7
8
9
10
|
ArrayList aList =
new
ArrayList();
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"c"
);
aList.Add(
"d"
);
aList.Add(
"e"
);
ArrayList list2 = newArrayList();
list2.Add(
"tt"
);
list2.Add(
"ttt"
);
aList.InsertRange(
2
,list2);
|
结果为 。
1
|
abtttttcde
|
四.删除 1. publicvirtualvoidRemove(objectobj); 从ArrayList中移除特定对象的第一个匹配项,注意是第一个 。
1
2
3
4
5
6
7
|
ArrayList aList =
new
ArrayList();
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"c"
);
aList.Add(
"d"
);
aList.Add(
"e"
);
aList.Remove(
"a"
);
|
结果为 。
1
|
bcde
|
2. publicvirtualvoidRemoveAt(intindex); 移除ArrayList的指定索引处的元素 。
1
2
3
4
5
6
|
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"c"
);
aList.Add(
"d"
);
aList.Add(
"e"
);
aList.RemoveAt(
0
);
|
结果为 。
1
|
bcde
|
3.publicvirtualvoidRemoveRange(intindex,intcount); 从ArrayList中移除一定范围的元素。Index表示索引,count表示从索引处开始的数目 。
1
2
3
4
5
6
|
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"c"
);
aList.Add(
"d"
);
aList.Add(
"e"
);
aList.RemoveRange(
1
,
3
);
|
结果为 。
。
4.publicvirtualvoidClear(); 从ArrayList中移除所有元素.
。
五.排序 1. publicvirtualvoidSort(); 对ArrayList或它的一部分中的元素进行排序.
1
2
3
4
5
6
7
8
|
ArrayListaList=newArrayList();
aList.Add(
"e"
);
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"c"
);
aList.Add(
"d"
);
DropDownList1.DataSource=aList;
//DropDownListDropDownList1;
DropDownList1.DataBind();
|
结果为 。
1
|
eabcd
|
1
2
3
4
5
6
7
8
9
|
ArrayListaList=newArrayList();
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"c"
);
aList.Add(
"d"
);
aList.Add(
"e"
);
aList.Sort();
//排序
DropDownList1.DataSource=aList;
//DropDownListDropDownList1;
DropDownList1.DataBind();
|
结果为 。
1
|
abcde
|
2.publicvirtualvoidReverse(); 将ArrayList或它的一部分中元素的顺序反转.
1
2
3
4
5
6
7
8
9
|
ArrayListaList=newArrayList();
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"c"
);
aList.Add(
"d"
);
aList.Add(
"e"
);
aList.Reverse();
//反转
DropDownList1.DataSource=aList;
//DropDownListDropDownList1;
DropDownList1.DataBind();
|
结果为 。
1
|
edcba
|
六.查找 1.publicvirtualintIndexOf(object); 2. publicvirtualintIndexOf(object,int); 3. publicvirtualintIndexOf(object,int,int); 返回ArrayList或它的一部分中某个值的第一个匹配项的从零开始的索引。没找到返回-1.
1
2
3
4
5
6
7
8
|
ArrayList aList =
new
ArrayList();
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"c"
);
aList.Add(
"d"
);
aList.Add(
"e"
);
intnIndex=aList.IndexOf(“a”);
//1
nIndex=aList.IndexOf(“p”);
//没找到,-1
|
4.publicvirtualintLastIndexOf(object); 5.publicvirtualintLastIndexOf(object,int); 6.publicvirtualintLastIndexOf(object,int,int); 返回ArrayList或它的一部分中某个值的最后一个匹配项的从零开始的索引.
1
2
3
4
5
6
7
|
ArrayList aList =
new
ArrayList();
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"a"
);
//同0
aList.Add(
"d"
);
aList.Add(
"e"
);
intnIndex=aList.LastIndexOf(
"a"
);
//值为2而不是0
|
7. publicvirtualboolContains(objectitem); 确定某个元素是否在ArrayList中。包含返回true,否则返回false 。
七.其他 1.publicvirtualintCapacity{get;set;} 获取或设置ArrayList可包含的元素数。 2.publicvirtualintCount{get;} 获取ArrayList中实际包含的元素数。 Capacity是ArrayList可以存储的元素数。Count是ArrayList中实际包含的元素数。Capacity总是大于或等于Count。如果在添加元素时,Count超过Capacity,则该列表的容量会通过自动重新分配内部数组加倍。 如果Capacity的值显式设置,则内部数组也需要重新分配以容纳指定的容量。如果Capacity被显式设置为0,则公共语言运行库将其设置为默认容量。默认容量为16。 在调用Clear后,Count为0,而此时Capacity切是默认容量16,而不是0 3.publicvirtualvoidTrimToSize(); 将容量设置为ArrayList中元素的实际数量。 如果不向列表中添加新元素,则此方法可用于最小化列表的内存系统开销。 若要完全清除列表中的所有元素,请在调用TrimToSize之前调用Clear方法。截去空ArrayList会将ArrayList的容量设置为默认容量,而不是零.
1
2
3
4
5
6
7
|
ArrayList aList =
new
ArrayList();
aList.Add(
"a"
);
aList.Add(
"b"
);
aList.Add(
"c"
);
aList.Add(
"d"
);
aList.Add(
"e"
);
//Count=5,Capacity=16,
aList.TrimToSize();
//Count=Capacity=5;
|
八.源码分析 List 接口的一个实现类,内部是用一个数组存储元素值,相当于一个可变大小的数组.
1.签名 。
1
2
3
|
public
class
ArrayList<E>
extends
AbstractList<E>
implements
List<E>, RandomAccess, Cloneable, Serializable
|
可以看到ArrayList继承了AbstractList抽象类,它实现了List接口的大多数方法。如果要实现一个不可变的List,只要继承这个类并且实现get(int)和size方法。如果要实现可变的List,需要覆盖set(int, E)。另外,如果List的大小是可变的,还要覆盖add(int, E)和remove()方法.
2.构造器 ArrayList提供了三个构造器:
1
2
3
|
ArrayList()
ArrayList(Collection<?
extends
E> c)
ArrayList(
int
initialCapacity)
|
Collection接口约定,每个集合类应该提供两个”标准”构造器,一个是无参数的构造器(上面第一个),另外一个是拥有单个参数(类型为Collettion)的构造器(上面第二个)。ArrayList还提供了第三个构造器,其接受一个int值,用于设置ArrayLi的初始大小(默认大小为10).
3.相关方法 。
1
2
3
4
5
6
7
8
|
trimToSize
public
void
trimToSize() {
modCount++;
int
oldCapacity = elementData.length;
if
(size < oldCapacity) {
elementData = Arrays.copyOf(elementData, size);
}
}
|
用于把ArrayList的容量缩减到当前实际大小,减少存储容量。其中的变量modCount由AbstracList继承而来,记录List发生结构化修改(structurally modified)的次数。elementData中实际存储了ArrayList的元素,在ArrayList中声明为:private transient Object[] elementData;变量size是ArrayList的元素数量,当size < oldCapacity时,调用Arrays.copyOf方法实现缩减.
4.indexOf 和 lasIndexOf 。
1
2
3
4
5
6
7
8
9
10
11
12
|
public
int
indexOf(Object o) {
if
(o ==
null
) {
for
(
int
i =
0
; i < size; i++)
if
(elementData[i]==
null
)
return
i;
}
else
{
for
(
int
i =
0
; i < size; i++)
if
(o.equals(elementData[i]))
return
i;
}
return
-
1
;
}
|
这两个方法返回指定元素的下标,要区分参数是否为null。lastIndexOf和indexOf类似,只不过是从后往前搜索.
5.ensureCapacity 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
public
void
ensureCapacity(
int
minCapacity) {
if
(minCapacity >
0
)
ensureCapacityInternal(minCapacity);
}
private
void
ensureCapacityInternal(
int
minCapacity) {
modCount++;
// overflow-conscious code
if
(minCapacity - elementData.length >
0
)
grow(minCapacity);
}
private
void
grow(
int
minCapacity) {
// overflow-conscious code
int
oldCapacity = elementData.length;
int
newCapacity = oldCapacity + (oldCapacity >>
1
);
if
(newCapacity - minCapacity <
0
)
newCapacity = minCapacity;
if
(newCapacity - MAX_ARRAY_SIZE >
0
)
newCapacity = hugeCapacity(minCapacity);
// minCapacity is usually close to size, so this is a win:
elementData = Arrays.copyOf(elementData, newCapacity);
}
|
这个方法可以确保ArrayList的大小 。
6.add 和 addAll 。
1
2
3
4
5
6
7
8
9
|
public
void
add(
int
index, E element) {
rangeCheckForAdd(index);
ensureCapacityInternal(size +
1
);
// Increments modCount!!
System.arraycopy(elementData, index, elementData, index +
1
,
size - index);
elementData[index] = element;
size++;
}
|
add(int index, E element)向指定位置添加元素,首先调用rangeCheckForAdd检查index是否有效,如果index > size || index < 0将抛出异常。然后确保容量加1,调用System.arraycopy把从index开始的元素往后移动一个位置。最后把index处的值设置为添加的元素。还有一个重载的add(E e)方法是直接把元素添加到末尾。 addAll(Collection<? extends E> c)和addAll(int index, Collection<? extends E> c)则分别是向末尾和指定位置添加Collection中的所有元素.
7.remove 和 removeAll 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
public
boolean
remove(Object o) {
if
(o ==
null
) {
for
(
int
index =
0
; index < size; index++)
if
(elementData[index] ==
null
) {
fastRemove(index);
return
true
;
}
}
else
{
for
(
int
index =
0
; index < size; index++)
if
(o.equals(elementData[index])) {
fastRemove(index);
return
true
;
}
}
return
false
;
}
|
remove(Object o)方法删除指定的元素。首先是查找元素位置,然后调用fastRemove(index)删除,其代码如下:
1
2
3
4
5
6
7
8
9
|
private
void
fastRemove(
int
index) {
modCount++;
int
numMoved = size - index -
1
;
if
(numMoved >
0
)
//把index+1往后的元素都往前移动一个位置
System.arraycopy(elementData, index+
1
, elementData, index,
numMoved);
elementData[--size] =
null
;
// Let gc do its work
}
|
重载的remove(int index)方法用于删除指定位置的元素。removeRange(int fromIndex, int toIndex)用于删除指定位置之间的所有元素。 removeAll(Collection<?> c)和retainAll(Collection<?> c)代码如下:
1
2
3
4
5
6
7
8
|
public
boolean
removeAll(Collection<?> c) {
Objects.requireNonNull(c);
return
batchRemove(c,
false
);
}
public
boolean
retainAll(Collection<?> c) {
Objects.requireNonNull(c);
return
batchRemove(c,
true
);
}
|
它们都是通过调用batchRemove方法实现的,其代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
private
boolean
batchRemove(Collection<?> c,
boolean
complement) {
final
Object[] elementData =
this
.elementData;
int
r =
0
, w =
0
;
boolean
modified =
false
;
try
{
for
(; r < size; r++)
if
(c.contains(elementData[r]) == complement)
elementData[w++] = elementData[r];
}
finally
{
// Preserve behavioral compatibility with AbstractCollection,
// even if c.contains() throws.
if
(r != size) {
System.arraycopy(elementData, r,
elementData, w,
size - r);
w += size - r;
}
if
(w != size) {
// clear to let GC do its work
for
(
int
i = w; i < size; i++)
elementData[i] =
null
;
modCount += size - w;
size = w;
modified =
true
;
}
}
return
modified;
}
|
这个方法有两个参数,第一个是操作的Collection,第二个是一个布尔值,通过设置为true或false来选择是removeAll还是retainAll。try里面的语句是把留下来的放在0到w之间,然后在finally中第二个if处理w之后的空间,第一个是在c.contains()抛出异常时执行.
最后此篇关于Java中ArrayList类的用法与源码完全解析的文章就讲到这里了,如果你想了解更多关于Java中ArrayList类的用法与源码完全解析的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在编写一个具有以下签名的 Java 方法。 void Logger(Method method, Object[] args); 如果一个方法(例如 ABC() )调用此方法 Logger,它应该
我是 Java 新手。 我的问题是我的 Java 程序找不到我试图用作的图像文件一个 JButton。 (目前这段代码什么也没做,因为我只是得到了想要的外观第一的)。这是我的主课 代码: packag
好的,今天我在接受采访,我已经编写 Java 代码多年了。采访中说“Java 垃圾收集是一个棘手的问题,我有几个 friend 一直在努力弄清楚。你在这方面做得怎么样?”。她是想骗我吗?还是我的一生都
我的 friend 给了我一个谜语让我解开。它是这样的: There are 100 people. Each one of them, in his turn, does the following
如果我将使用 Java 5 代码的应用程序编译成字节码,生成的 .class 文件是否能够在 Java 1.4 下运行? 如果后者可以工作并且我正在尝试在我的 Java 1.4 应用程序中使用 Jav
有关于why Java doesn't support unsigned types的问题以及一些关于处理无符号类型的问题。我做了一些搜索,似乎 Scala 也不支持无符号数据类型。限制是Java和S
我只是想知道在一个 java 版本中生成的字节码是否可以在其他 java 版本上运行 最佳答案 通常,字节码无需修改即可在 较新 版本的 Java 上运行。它不会在旧版本上运行,除非您使用特殊参数 (
我有一个关于在命令提示符下执行 java 程序的基本问题。 在某些机器上我们需要指定 -cp 。 (类路径)同时执行java程序 (test为java文件名与.class文件存在于同一目录下) jav
我已经阅读 StackOverflow 有一段时间了,现在我才鼓起勇气提出问题。我今年 20 岁,目前在我的家乡(罗马尼亚克卢日-纳波卡)就读 IT 大学。足以介绍:D。 基本上,我有一家提供簿记应用
我有 public JSONObject parseXML(String xml) { JSONObject jsonObject = XML.toJSONObject(xml); r
我已经在 Java 中实现了带有动态类型的简单解释语言。不幸的是我遇到了以下问题。测试时如下代码: def main() { def ks = Map[[1, 2]].keySet()
一直提示输入 1 到 10 的数字 - 结果应将 st、rd、th 和 nd 添加到数字中。编写一个程序,提示用户输入 1 到 10 之间的任意整数,然后以序数形式显示该整数并附加后缀。 public
我有这个 DownloadFile.java 并按预期下载该文件: import java.io.*; import java.net.URL; public class DownloadFile {
我想在 GUI 上添加延迟。我放置了 2 个 for 循环,然后重新绘制了一个标签,但这 2 个 for 循环一个接一个地执行,并且标签被重新绘制到最后一个。 我能做什么? for(int i=0;
我正在对对象 Student 的列表项进行一些测试,但是我更喜欢在 java 类对象中创建硬编码列表,然后从那里提取数据,而不是连接到数据库并在结果集中选择记录。然而,自从我这样做以来已经很长时间了,
我知道对象创建分为三个部分: 声明 实例化 初始化 classA{} classB extends classA{} classA obj = new classB(1,1); 实例化 它必须使用
我有兴趣使用 GPRS 构建车辆跟踪系统。但是,我有一些问题要问以前做过此操作的人: GPRS 是最好的技术吗?人们意识到任何问题吗? 我计划使用 Java/Java EE - 有更好的技术吗? 如果
我可以通过递归方法反转数组,例如:数组={1,2,3,4,5} 数组结果={5,4,3,2,1}但我的结果是相同的数组,我不知道为什么,请帮助我。 public class Recursion { p
有这样的标准方式吗? 包括 Java源代码-测试代码- Ant 或 Maven联合单元持续集成(可能是巡航控制)ClearCase 版本控制工具部署到应用服务器 最后我希望有一个自动构建和集成环境。
我什至不知道这是否可能,我非常怀疑它是否可能,但如果可以,您能告诉我怎么做吗?我只是想知道如何从打印机打印一些文本。 有什么想法吗? 最佳答案 这里有更简单的事情。 import javax.swin
我是一名优秀的程序员,十分优秀!