200+ câu trắc nghiệm Lập trình Java cơ sở có đáp án - Phần 7

Cho class như sau:java1: public interface Comparable { 2: int compareTo(Object other); 3: }4: class Employee implement Comparable { 5: int compareTo(Object other) {6: Employee other = (Employ

1/30

Cho class như sau:

1: public interface Comparable {

2: int compareTo(Object other);

3: }

4: class Employee implement Comparable {

5: int compareTo(Object other) {

6: Employee other = (Employee) otherObject;

7: return 0;

8: }

9: }

Chương trình trên sai ở dòng nào?

1

2, 4

2, 4, 5

4, 5

Giải thích

Chọn đáp án D (Lưu ý: implement sai, phải là implements. otherObject ở dòng 6 chưa được khai báo. Phương thức compareTo khi implement interface phải là public)