Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
067f287b
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
067f287b
编写于
7月 22, 2014
作者:
A
asaha
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
0796061d
d6ebc21e
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
176 addition
and
101 deletion
+176
-101
.hgtags
.hgtags
+2
-0
src/share/classes/java/util/Collections.java
src/share/classes/java/util/Collections.java
+22
-24
src/share/classes/sun/security/smartcardio/CardImpl.java
src/share/classes/sun/security/smartcardio/CardImpl.java
+9
-0
test/java/util/Collections/CheckedListReplaceAll.java
test/java/util/Collections/CheckedListReplaceAll.java
+50
-0
test/java/util/Collections/CheckedMapReplaceAll.java
test/java/util/Collections/CheckedMapReplaceAll.java
+54
-0
test/java/util/Collections/CheckedQueue.java
test/java/util/Collections/CheckedQueue.java
+39
-77
未找到文件。
.hgtags
浏览文件 @
067f287b
...
@@ -308,6 +308,7 @@ d723d05cd17afd5c4dd4293bcba83fef44a3c0bb jdk8u20-b16
...
@@ -308,6 +308,7 @@ d723d05cd17afd5c4dd4293bcba83fef44a3c0bb jdk8u20-b16
5c0406ee9e820140b5322db006baed199c165b4f jdk8u20-b20
5c0406ee9e820140b5322db006baed199c165b4f jdk8u20-b20
693025bbc45d683676fa78bb76201b665e0d8f2d jdk8u20-b21
693025bbc45d683676fa78bb76201b665e0d8f2d jdk8u20-b21
0c2393744b29175de5204140d4dfbf12ca3d364f jdk8u20-b22
0c2393744b29175de5204140d4dfbf12ca3d364f jdk8u20-b22
be30cb2a3088f2b7b334b499f7eddbd5312312a7 jdk8u20-b23
abca9f6f1a10e9f91b2538bbe7870f54f550d986 jdk8u25-b00
abca9f6f1a10e9f91b2538bbe7870f54f550d986 jdk8u25-b00
7d0627679c9fdeaaaa9fe15c7cc11af0763621ec jdk8u25-b01
7d0627679c9fdeaaaa9fe15c7cc11af0763621ec jdk8u25-b01
b0277ec994b751ebb761814675352506cd56bcd6 jdk8u25-b02
b0277ec994b751ebb761814675352506cd56bcd6 jdk8u25-b02
...
@@ -316,4 +317,5 @@ b0277ec994b751ebb761814675352506cd56bcd6 jdk8u25-b02
...
@@ -316,4 +317,5 @@ b0277ec994b751ebb761814675352506cd56bcd6 jdk8u25-b02
75b48287a1b3fc5757ac473f72c8918c7f345ffc jdk8u25-b05
75b48287a1b3fc5757ac473f72c8918c7f345ffc jdk8u25-b05
5b80b4b22b4ca0b630c7f1cec3605da7694168e2 jdk8u25-b06
5b80b4b22b4ca0b630c7f1cec3605da7694168e2 jdk8u25-b06
0e0a35b0bf0ff5852026c50038d5c2ecb26c075c jdk8u25-b07
0e0a35b0bf0ff5852026c50038d5c2ecb26c075c jdk8u25-b07
d7d221f56fd17b96bab4440448641a844f9e92cd jdk8u25-b08
f935349e2c065487c745bc41f81ddc7869bd2d2d jdk8u31-b00
f935349e2c065487c745bc41f81ddc7869bd2d2d jdk8u31-b00
src/share/classes/java/util/Collections.java
浏览文件 @
067f287b
...
@@ -3031,9 +3031,11 @@ public class Collections {
...
@@ -3031,9 +3031,11 @@ public class Collections {
final
Collection
<
E
>
c
;
final
Collection
<
E
>
c
;
final
Class
<
E
>
type
;
final
Class
<
E
>
type
;
void
typeCheck
(
Object
o
)
{
@SuppressWarnings
(
"unchecked"
)
E
typeCheck
(
Object
o
)
{
if
(
o
!=
null
&&
!
type
.
isInstance
(
o
))
if
(
o
!=
null
&&
!
type
.
isInstance
(
o
))
throw
new
ClassCastException
(
badElementMsg
(
o
));
throw
new
ClassCastException
(
badElementMsg
(
o
));
return
(
E
)
o
;
}
}
private
String
badElementMsg
(
Object
o
)
{
private
String
badElementMsg
(
Object
o
)
{
...
@@ -3042,10 +3044,8 @@ public class Collections {
...
@@ -3042,10 +3044,8 @@ public class Collections {
}
}
CheckedCollection
(
Collection
<
E
>
c
,
Class
<
E
>
type
)
{
CheckedCollection
(
Collection
<
E
>
c
,
Class
<
E
>
type
)
{
if
(
c
==
null
||
type
==
null
)
this
.
c
=
Objects
.
requireNonNull
(
c
,
"c"
);
throw
new
NullPointerException
();
this
.
type
=
Objects
.
requireNonNull
(
type
,
"type"
);
this
.
c
=
c
;
this
.
type
=
type
;
}
}
public
int
size
()
{
return
c
.
size
();
}
public
int
size
()
{
return
c
.
size
();
}
...
@@ -3077,10 +3077,7 @@ public class Collections {
...
@@ -3077,10 +3077,7 @@ public class Collections {
public
void
remove
()
{
it
.
remove
();
}};
public
void
remove
()
{
it
.
remove
();
}};
}
}
public
boolean
add
(
E
e
)
{
public
boolean
add
(
E
e
)
{
return
c
.
add
(
typeCheck
(
e
));
}
typeCheck
(
e
);
return
c
.
add
(
e
);
}
private
E
[]
zeroLengthElementArray
;
// Lazily initialized
private
E
[]
zeroLengthElementArray
;
// Lazily initialized
...
@@ -3091,7 +3088,7 @@ public class Collections {
...
@@ -3091,7 +3088,7 @@ public class Collections {
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
Collection
<
E
>
checkedCopyOf
(
Collection
<?
extends
E
>
coll
)
{
Collection
<
E
>
checkedCopyOf
(
Collection
<?
extends
E
>
coll
)
{
Object
[]
a
=
null
;
Object
[]
a
;
try
{
try
{
E
[]
z
=
zeroLengthElementArray
();
E
[]
z
=
zeroLengthElementArray
();
a
=
coll
.
toArray
(
z
);
a
=
coll
.
toArray
(
z
);
...
@@ -3187,11 +3184,7 @@ public class Collections {
...
@@ -3187,11 +3184,7 @@ public class Collections {
public
E
peek
()
{
return
queue
.
peek
();}
public
E
peek
()
{
return
queue
.
peek
();}
public
E
poll
()
{
return
queue
.
poll
();}
public
E
poll
()
{
return
queue
.
poll
();}
public
E
remove
()
{
return
queue
.
remove
();}
public
E
remove
()
{
return
queue
.
remove
();}
public
boolean
offer
(
E
e
)
{
return
queue
.
offer
(
typeCheck
(
e
));}
public
boolean
offer
(
E
e
)
{
typeCheck
(
e
);
return
add
(
e
);
}
}
}
/**
/**
...
@@ -3440,13 +3433,11 @@ public class Collections {
...
@@ -3440,13 +3433,11 @@ public class Collections {
public
int
lastIndexOf
(
Object
o
)
{
return
list
.
lastIndexOf
(
o
);
}
public
int
lastIndexOf
(
Object
o
)
{
return
list
.
lastIndexOf
(
o
);
}
public
E
set
(
int
index
,
E
element
)
{
public
E
set
(
int
index
,
E
element
)
{
typeCheck
(
element
);
return
list
.
set
(
index
,
typeCheck
(
element
));
return
list
.
set
(
index
,
element
);
}
}
public
void
add
(
int
index
,
E
element
)
{
public
void
add
(
int
index
,
E
element
)
{
typeCheck
(
element
);
list
.
add
(
index
,
typeCheck
(
element
));
list
.
add
(
index
,
element
);
}
}
public
boolean
addAll
(
int
index
,
Collection
<?
extends
E
>
c
)
{
public
boolean
addAll
(
int
index
,
Collection
<?
extends
E
>
c
)
{
...
@@ -3467,13 +3458,11 @@ public class Collections {
...
@@ -3467,13 +3458,11 @@ public class Collections {
public
void
remove
()
{
i
.
remove
();
}
public
void
remove
()
{
i
.
remove
();
}
public
void
set
(
E
e
)
{
public
void
set
(
E
e
)
{
typeCheck
(
e
);
i
.
set
(
typeCheck
(
e
));
i
.
set
(
e
);
}
}
public
void
add
(
E
e
)
{
public
void
add
(
E
e
)
{
typeCheck
(
e
);
i
.
add
(
typeCheck
(
e
));
i
.
add
(
e
);
}
}
@Override
@Override
...
@@ -3487,10 +3476,19 @@ public class Collections {
...
@@ -3487,10 +3476,19 @@ public class Collections {
return
new
CheckedList
<>(
list
.
subList
(
fromIndex
,
toIndex
),
type
);
return
new
CheckedList
<>(
list
.
subList
(
fromIndex
,
toIndex
),
type
);
}
}
/**
* {@inheritDoc}
*
* @throws ClassCastException if the class of an element returned by the
* operator prevents it from being added to this collection. The
* exception may be thrown after some elements of the list have
* already been replaced.
*/
@Override
@Override
public
void
replaceAll
(
UnaryOperator
<
E
>
operator
)
{
public
void
replaceAll
(
UnaryOperator
<
E
>
operator
)
{
list
.
replaceAll
(
operator
);
list
.
replaceAll
(
e
->
typeCheck
(
operator
.
apply
(
e
))
);
}
}
@Override
@Override
public
void
sort
(
Comparator
<?
super
E
>
c
)
{
public
void
sort
(
Comparator
<?
super
E
>
c
)
{
list
.
sort
(
c
);
list
.
sort
(
c
);
...
...
src/share/classes/sun/security/smartcardio/CardImpl.java
浏览文件 @
067f287b
...
@@ -237,7 +237,16 @@ final class CardImpl extends Card {
...
@@ -237,7 +237,16 @@ final class CardImpl extends Card {
}
}
}
}
private
static
final
boolean
invertReset
=
Boolean
.
parseBoolean
(
java
.
security
.
AccessController
.
doPrivileged
(
new
sun
.
security
.
action
.
GetPropertyAction
(
"sun.security.smartcardio.invertCardReset"
,
"false"
)));
public
void
disconnect
(
boolean
reset
)
throws
CardException
{
public
void
disconnect
(
boolean
reset
)
throws
CardException
{
if
(
invertReset
)
{
reset
=
!
reset
;
}
if
(
reset
)
{
if
(
reset
)
{
checkSecurity
(
"reset"
);
checkSecurity
(
"reset"
);
}
}
...
...
test/java/util/Collections/CheckedListReplaceAll.java
0 → 100644
浏览文件 @
067f287b
/*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8047795
* @summary Ensure that replaceAll operator cannot add bad elements
* @author Mike Duigou
*/
import
java.util.*
;
import
java.util.function.UnaryOperator
;
public
class
CheckedListReplaceAll
{
public
static
void
main
(
String
[]
args
)
{
List
unwrapped
=
Arrays
.
asList
(
new
Object
[]{
1
,
2
,
3
});
List
<
Object
>
wrapped
=
Collections
.
checkedList
(
unwrapped
,
Integer
.
class
);
UnaryOperator
evil
=
e
->
(((
int
)
e
)
%
2
!=
0
)
?
e
:
"evil"
;
try
{
wrapped
.
replaceAll
(
evil
);
System
.
out
.
printf
(
"Bwahaha! I have defeated you! %s\n"
,
wrapped
);
throw
new
RuntimeException
(
"String added to checked List<Integer>"
);
}
catch
(
ClassCastException
thwarted
)
{
thwarted
.
printStackTrace
(
System
.
out
);
System
.
out
.
println
(
"Curses! Foiled again!"
);
}
}
}
test/java/util/Collections/CheckedMapReplaceAll.java
0 → 100644
浏览文件 @
067f287b
/*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8047795
* @summary Ensure that replaceAll operator cannot add bad elements
* @author Mike Duigou
*/
import
java.util.*
;
import
java.util.function.BiFunction
;
public
class
CheckedMapReplaceAll
{
public
static
void
main
(
String
[]
args
)
{
Map
<
Integer
,
Double
>
unwrapped
=
new
HashMap
<>();
unwrapped
.
put
(
1
,
1.0
);
unwrapped
.
put
(
2
,
2.0
);
unwrapped
.
put
(
3
,
3.0
);
Map
<
Integer
,
Double
>
wrapped
=
Collections
.
checkedMap
(
unwrapped
,
Integer
.
class
,
Double
.
class
);
BiFunction
evil
=
(
k
,
v
)
->
(((
int
)
k
)
%
2
!=
0
)
?
v
:
"evil"
;
try
{
wrapped
.
replaceAll
(
evil
);
System
.
out
.
printf
(
"Bwahaha! I have defeated you! %s\n"
,
wrapped
);
throw
new
RuntimeException
(
"String added to checked Map<Integer,Double>"
);
}
catch
(
ClassCastException
thwarted
)
{
thwarted
.
printStackTrace
(
System
.
out
);
System
.
out
.
println
(
"Curses! Foiled again!"
);
}
}
}
test/java/util/Collections/CheckedQueue.java
浏览文件 @
067f287b
/*
/*
* Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2011,
2014,
Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
*
* This code is free software; you can redistribute it and/or modify it
* This code is free software; you can redistribute it and/or modify it
...
@@ -23,55 +23,40 @@
...
@@ -23,55 +23,40 @@
/*
/*
* @test
* @test
* @bug 5020931
* @bug 5020931
8048207
* @summary Unit test for Collections.checkedQueue
* @summary Unit test for Collections.checkedQueue
* @run testng CheckedQueue
*/
*/
import
java.lang.reflect.Method
;
import
java.util.Collections
;
import
java.util.Collections
;
import
java.util.Iterator
;
import
java.util.Queue
;
import
java.util.Queue
;
import
java.util.concurrent.ArrayBlockingQueue
;
import
java.util.concurrent.ArrayBlockingQueue
;
public
class
CheckedQueue
{
import
org.testng.annotations.Test
;
static
int
status
=
0
;
import
static
org
.
testng
.
Assert
.
fail
;
import
static
org
.
testng
.
Assert
.
assertEquals
;
public
static
void
main
(
String
[]
args
)
throws
Exception
{
import
static
org
.
testng
.
Assert
.
assertTrue
;
new
CheckedQueue
();
import
static
org
.
testng
.
Assert
.
assertFalse
;
}
public
CheckedQueue
()
throws
Exception
{
run
();
}
private
void
run
()
throws
Exception
{
public
class
CheckedQueue
{
Method
[]
methods
=
this
.
getClass
().
getDeclaredMethods
();
for
(
int
i
=
0
;
i
<
methods
.
length
;
i
++)
{
Method
method
=
methods
[
i
];
String
methodName
=
method
.
getName
();
if
(
methodName
.
startsWith
(
"test"
))
{
try
{
Object
obj
=
method
.
invoke
(
this
,
new
Object
[
0
]);
}
catch
(
Exception
e
)
{
throw
new
Exception
(
this
.
getClass
().
getName
()
+
"."
+
methodName
+
" test failed, test exception "
+
"follows\n"
+
e
.
getCause
());
}
}
}
}
/**
/**
* This test adds items to a queue.
* This test adds items to a queue.
*/
*/
private
void
test00
()
{
@Test
public
void
testAdd
()
{
int
arrayLength
=
10
;
int
arrayLength
=
10
;
ArrayBlockingQueue
<
String
>
abq
=
new
ArrayBlockingQueue
(
arrayLength
);
Queue
<
String
>
abq
=
Collections
.
checkedQueue
(
new
ArrayBlockingQueue
<>(
arrayLength
),
String
.
class
);
for
(
int
i
=
0
;
i
<
arrayLength
;
i
++)
{
for
(
int
i
=
0
;
i
<
arrayLength
;
i
++)
{
abq
.
add
(
new
String
(
Integer
.
toString
(
i
)));
abq
.
add
(
Integer
.
toString
(
i
));
}
try
{
abq
.
add
(
"full"
);
}
catch
(
IllegalStateException
full
)
{
}
}
}
}
...
@@ -80,23 +65,17 @@ public class CheckedQueue {
...
@@ -80,23 +65,17 @@ public class CheckedQueue {
* {@code String}s gets the checked queue, and attempt to add an Integer to
* {@code String}s gets the checked queue, and attempt to add an Integer to
* the checked queue.
* the checked queue.
*/
*/
private
void
test01
()
throws
Exception
{
@Test
(
expectedExceptions
=
ClassCastException
.
class
)
public
void
testAddFail1
()
{
int
arrayLength
=
10
;
int
arrayLength
=
10
;
ArrayBlockingQueue
<
String
>
abq
=
new
ArrayBlockingQueue
(
arrayLength
+
1
);
ArrayBlockingQueue
<
String
>
abq
=
new
ArrayBlockingQueue
(
arrayLength
+
1
);
for
(
int
i
=
0
;
i
<
arrayLength
;
i
++)
{
for
(
int
i
=
0
;
i
<
arrayLength
;
i
++)
{
abq
.
add
(
new
String
(
Integer
.
toString
(
i
)
));
abq
.
add
(
Integer
.
toString
(
i
));
}
}
Queue
q
=
Collections
.
checkedQueue
(
abq
,
String
.
class
);
Queue
q
=
Collections
.
checkedQueue
(
abq
,
String
.
class
);
q
.
add
(
0
);
try
{
q
.
add
(
new
Integer
(
0
));
throw
new
Exception
(
this
.
getClass
().
getName
()
+
"."
+
"test01 test"
+
" failed, should throw ClassCastException."
);
}
catch
(
ClassCastException
cce
)
{
// Do nothing.
}
}
}
/**
/**
...
@@ -104,47 +83,40 @@ public class CheckedQueue {
...
@@ -104,47 +83,40 @@ public class CheckedQueue {
* {@code String}, gets the checked queue, and attempt to add an Integer to
* {@code String}, gets the checked queue, and attempt to add an Integer to
* the checked queue.
* the checked queue.
*/
*/
private
void
test02
()
throws
Exception
{
@Test
(
expectedExceptions
=
ClassCastException
.
class
)
public
void
testAddFail2
()
{
ArrayBlockingQueue
<
String
>
abq
=
new
ArrayBlockingQueue
(
1
);
ArrayBlockingQueue
<
String
>
abq
=
new
ArrayBlockingQueue
(
1
);
Queue
q
=
Collections
.
checkedQueue
(
abq
,
String
.
class
);
Queue
q
=
Collections
.
checkedQueue
(
abq
,
String
.
class
);
try
{
q
.
add
(
0
);
q
.
add
(
new
Integer
(
0
));
throw
new
Exception
(
this
.
getClass
().
getName
()
+
"."
+
"test02 test"
+
" failed, should throw ClassCastException."
);
}
catch
(
ClassCastException
e
)
{
// Do nothing.
}
}
}
/**
/**
* This test tests the Collections.checkedQueue method call for nulls in
* This test tests the Collections.checkedQueue method call for nulls in
* each and both of the parameters.
* each and both of the parameters.
*/
*/
private
void
test03
()
throws
Exception
{
@Test
public
void
testArgs
()
{
ArrayBlockingQueue
<
String
>
abq
=
new
ArrayBlockingQueue
(
1
);
ArrayBlockingQueue
<
String
>
abq
=
new
ArrayBlockingQueue
(
1
);
Queue
q
;
Queue
q
;
try
{
try
{
q
=
Collections
.
checkedQueue
(
null
,
String
.
class
);
q
=
Collections
.
checkedQueue
(
null
,
String
.
class
);
throw
new
Exception
(
this
.
getClass
().
getName
()
+
"."
+
"test03 test"
fail
(
"should throw NullPointerException."
);
+
" failed, should throw NullPointerException."
);
}
catch
(
NullPointerException
npe
)
{
}
catch
(
NullPointerException
npe
)
{
// Do nothing
// Do nothing
}
}
try
{
try
{
q
=
Collections
.
checkedQueue
(
abq
,
null
);
q
=
Collections
.
checkedQueue
(
abq
,
null
);
throw
new
Exception
(
this
.
getClass
().
getName
()
+
"."
+
"test03 test"
fail
(
"should throw NullPointerException."
);
+
" failed, should throw NullPointerException."
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
// Do nothing
// Do nothing
}
}
try
{
try
{
q
=
Collections
.
checkedQueue
(
null
,
null
);
q
=
Collections
.
checkedQueue
(
null
,
null
);
throw
new
Exception
(
this
.
getClass
().
getName
()
+
"."
+
"test03 test"
fail
(
"should throw NullPointerException."
);
+
" failed, should throw NullPointerException."
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
// Do nothing
// Do nothing
}
}
...
@@ -153,38 +125,28 @@ public class CheckedQueue {
...
@@ -153,38 +125,28 @@ public class CheckedQueue {
/**
/**
* This test tests the CheckedQueue.offer method.
* This test tests the CheckedQueue.offer method.
*/
*/
private
void
test04
()
throws
Exception
{
@Test
public
void
testOffer
()
{
ArrayBlockingQueue
<
String
>
abq
=
new
ArrayBlockingQueue
(
1
);
ArrayBlockingQueue
<
String
>
abq
=
new
ArrayBlockingQueue
(
1
);
Queue
q
=
Collections
.
checkedQueue
(
abq
,
String
.
class
);
Queue
q
=
Collections
.
checkedQueue
(
abq
,
String
.
class
);
try
{
try
{
q
.
offer
(
null
);
q
.
offer
(
null
);
throw
new
Exception
(
this
.
getClass
().
getName
()
+
"."
+
"test04 test"
fail
(
"should throw NullPointerException."
);
+
" failed, should throw NullPointerException."
);
}
catch
(
NullPointerException
npe
)
{
}
catch
(
NullPointerException
npe
)
{
// Do nothing
// Do nothing
}
}
try
{
try
{
q
.
offer
(
new
Integer
(
0
));
q
.
offer
(
0
);
throw
new
Exception
(
this
.
getClass
().
getName
()
+
"."
+
"test04 test"
fail
(
"should throw ClassCastException."
);
+
" failed, should throw ClassCastException."
);
}
catch
(
ClassCastException
cce
)
{
}
catch
(
ClassCastException
cce
)
{
// Do nothing
// Do nothing
}
}
q
.
offer
(
new
String
(
"0"
));
assertTrue
(
q
.
offer
(
"0"
),
"queue should have room"
);
try
{
q
.
offer
(
new
String
(
"1"
));
throw
new
Exception
(
this
.
getClass
().
getName
()
+
"."
+
"test04 test"
+
" failed, should throw IllegalStateException."
);
}
catch
(
IllegalStateException
ise
)
{
// Do nothing
}
}
private
void
test05
()
{
// no room at the inn!
assertFalse
(
q
.
offer
(
"1"
),
"queue should be full"
);
}
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录