Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
8422d921
提交
8422d921
authored
7月 23, 2014
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Disable work in progress
上级
037c15c3
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
117 行增加
和
117 行删除
+117
-117
ConcurrentArrayList.java
h2/src/main/org/h2/mvstore/ConcurrentArrayList.java
+117
-117
没有找到文件。
h2/src/main/org/h2/mvstore/ConcurrentArrayList.java
浏览文件 @
8422d921
...
@@ -17,122 +17,122 @@ import java.util.Iterator;
...
@@ -17,122 +17,122 @@ import java.util.Iterator;
*/
*/
public
class
ConcurrentArrayList
<
K
>
{
public
class
ConcurrentArrayList
<
K
>
{
/**
//
/**
* The list.
//
* The list.
*/
//
*/
volatile
List
<
K
>
list
=
new
List
<
K
>(
null
,
0
,
0
);
//
volatile List<K> list = new List<K>(null, 0, 0);
//
/**
//
/**
* Get the first element, or null if none.
//
* Get the first element, or null if none.
*
//
*
* @return the first element
//
* @return the first element
*/
//
*/
public
K
peekFirst
()
{
//
public K peekFirst() {
return
list
.
peekFirst
();
//
return list.peekFirst();
}
//
}
//
/**
//
/**
* Get the last element, or null if none.
//
* Get the last element, or null if none.
*
//
*
* @return the last element
//
* @return the last element
*/
//
*/
public
K
peekLast
()
{
//
public K peekLast() {
return
list
.
peekLast
();
//
return list.peekLast();
}
//
}
//
/**
//
/**
* Add an element at the end.
//
* Add an element at the end.
*
//
*
* @param obj the element
//
* @param obj the element
*/
//
*/
public
synchronized
void
add
(
K
obj
)
{
//
public synchronized void add(K obj) {
K
[]
array
=
new
K
[
list
.
length
+
1
];
//
K[] array = new K[list.length + 1];
if
(
list
.
length
>
0
)
{
//
if (list.length > 0) {
System
.
arraycopy
(
list
.
list
,
list
.
offset
,
dest
,
destPos
,
length
)
//
System.arraycopy(list.list, list.offset, dest, destPos, length)
Arrays
.
copyOf
(,
newLength
)
//
Arrays.copyOf(, newLength)
list
=
new
List
<
K
>(
list
.
add
(
obj
);
//
list = new List<K>(list.add(obj);
}
//
}
//
/**
//
/**
* Remove the first element, if it matches.
//
* Remove the first element, if it matches.
*
//
*
* @param obj the element to remove
//
* @param obj the element to remove
* @return true if the element matched and was removed
//
* @return true if the element matched and was removed
*/
//
*/
public
synchronized
boolean
removeFirst
(
K
obj
)
{
//
public synchronized boolean removeFirst(K obj) {
if
(
head
.
obj
!=
obj
)
{
//
if (head.obj != obj) {
return
false
;
//
return false;
}
//
}
head
=
head
.
next
;
//
head = head.next;
return
true
;
//
return true;
}
//
}
//
/**
//
/**
* Remove the last element, if it matches.
//
* Remove the last element, if it matches.
*
//
*
* @param obj the element to remove
//
* @param obj the element to remove
* @return true if the element matched and was removed
//
* @return true if the element matched and was removed
*/
//
*/
public
synchronized
boolean
removeLast
(
K
obj
)
{
//
public synchronized boolean removeLast(K obj) {
if
(
peekLast
()
!=
obj
)
{
//
if (peekLast() != obj) {
return
false
;
//
return false;
}
//
}
head
=
Entry
.
removeLast
(
head
);
//
head = Entry.removeLast(head);
return
true
;
//
return true;
}
//
}
//
/**
//
/**
* Get an iterator over all entries.
//
* Get an iterator over all entries.
*
//
*
* @return the iterator
//
* @return the iterator
*/
//
*/
public
Iterator
<
K
>
iterator
()
{
//
public Iterator<K> iterator() {
return
new
Iterator
<
K
>()
{
//
return new Iterator<K>() {
//
List
<
K
>
list
=
head
;
//
List<K> list = head;
//
@Override
//
@Override
public
boolean
hasNext
()
{
//
public boolean hasNext() {
return
current
!=
NULL
;
//
return current != NULL;
}
//
}
//
@Override
//
@Override
public
K
next
()
{
//
public K next() {
K
x
=
current
.
obj
;
//
K x = current.obj;
current
=
current
.
next
;
//
current = current.next;
return
x
;
//
return x;
}
//
}
//
@Override
//
@Override
public
void
remove
()
{
//
public void remove() {
throw
DataUtils
.
newUnsupportedOperationException
(
"remove"
);
//
throw DataUtils.newUnsupportedOperationException("remove");
}
//
}
//
};
//
};
}
//
}
//
/**
//
/**
* An entry in the linked list.
//
* An entry in the linked list.
*/
//
*/
private
static
class
List
<
K
>
{
//
private static class List<K> {
final
K
[]
list
;
//
final K[] list;
final
int
offset
;
//
final int offset;
final
int
length
;
//
final int length;
//
List
(
K
[]
list
,
int
offset
,
int
length
)
{
//
List(K[] list, int offset, int length) {
this
.
list
=
list
;
//
this.list = list;
this
.
offset
=
offset
;
//
this.offset = offset;
this
.
length
=
length
;
//
this.length = length;
}
//
}
//
public
K
peekFirst
()
{
//
public K peekFirst() {
return
length
==
0
?
null
:
list
[
offset
];
//
return length == 0 ? null : list[offset];
}
//
}
//
public
K
peekLast
()
{
//
public K peekLast() {
return
length
==
0
?
null
:
list
[
offset
+
length
-
1
];
//
return length == 0 ? null : list[offset + length - 1];
}
//
}
//
}
//
}
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论