相关考题
-
单项选择题
当对Set类型的集合使用add()方法时,若方法返回false说明什么?()
A. 添加的元素不存在
B. 从集合中删除元素
C. 元素添加到集合中
D. 添加的元素在集合中已经存在 -
单项选择题
集合API中Set接口的特点是哪项?()
A.不允许重复元素,元素无顺序
B.不允许重复元素,元素有顺序
C.允许重复元素,元素无顺序
D.允许重复元素,元素有顺序 -
单项选择题
public class TestA{ public void methodA() throws IOException{ //…… } } public class TestB extends TestA{ public void methodA() throws EOFException{ //…… } } public class TestC extends TestA{ public void methodA() throws Exception{ //…… } } 当编译类TestC的时候,结果是哪项?()
A. 正常
B. 编译错误
C. 运行错误
D. 以上都不对
