A. 添加的元素不存在 B. 從集合中刪除元素 C. 元素添加到集合中 D. 添加的元素在集合中已經(jīng)存在
A.不允許重復(fù)元素,元素?zé)o順序 B.不允許重復(fù)元素,元素有順序 C.允許重復(fù)元素,元素?zé)o順序 D.允許重復(fù)元素,元素有順序
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{ //…… } } 當(dāng)編譯類TestC的時(shí)候,結(jié)果是哪項(xiàng)?()
A. 正常 B. 編譯錯(cuò)誤 C. 運(yùn)行錯(cuò)誤 D. 以上都不對