單項選擇題

下面代碼的運(yùn)行結(jié)果是什么?()

A. 42
B. 0042
C. An exception is thrown at runtime.
D. Compilation fails because of an error in line 13.
E. Compilation fails because of an error in line 14.


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題

int[] myArray = new int[] {1,2,3,4,5}; 
以下哪個選項可以用一個數(shù)組創(chuàng)建一個列表?()

A. List myList = myArray.asList();
B. List myList = Arrays.asList(myArray);
C. List myList = new ArrayList(myArray);
D. List myList = Collections.fromArray(myArray);

2.單項選擇題

Which is true?()

A. Line 3 will print the value 2.
B. Line 3 will print the value 3.
C. Compilation will fail because of an error in line 1.
D. Compilation will fail because of an error in line 2.

3.單項選擇題

下面方法返回值是什么?()

A. REDHE
B. edhe
C. EDH
D. edhel
E. redh
F. RED

4.單項選擇題

對下面父類方法重寫正確的是()

A.public int method (int a , int b){……}
B.private int method (int a , int b){……}
C.protected void method (int a , int b){……}
D.以上答案都不正確

5.單項選擇題下面關(guān)于重寫的說法,錯誤的是()

A.重寫可以體現(xiàn)父類與子類之間的多態(tài)性。
B.父類中定義的方法,必須在子類中重寫。
C.方法重寫又稱方法覆蓋。
D.如果在子類中定義某方法與其父類有相同的名稱和參數(shù),我們說該方法被重寫。
E.有時子類并不想原封不動地繼承父類的方法,而是想作一定的修改,這就需要采用方法的重寫。