首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2SE开发 >

接口相关有关问题

2012-01-10 
接口相关问题abstract class MyClass Implements Interface1, Interface2{public void f(){}public vlid g

接口相关问题
abstract class MyClass Implements Interface1, Interface2{ 
public void f(){} 
public vlid g(){} 

interface Interface1{ 
int VAL_A=1; 
int VAL_B=2; 
void f(); 
void g(); 

interface Interface2{ 
int VAL_B=3; 
inf VAL_C=4; 
void g(); 
void h(); 
}
Select the one right answer. 
(a) Interface1 and Interface2 do not match, therefore MyClass cannot implement them both. 
(b) MyClass only implements Interface1. Implementation for void h() from Interface2 is missing. 
(c) The declarations of void g() in the two interfaces clash. 
(d) The definitions of int VAL_B in the two interface class. 
(e) Nothing is wrong with the code, it will compile without errors
谁能给我解释下这道题。


[解决办法]
答案应该选e吧
由于MyClass是abstract的,实现了Interface1, Interface2,不一定要为他们的方法提供具体的定义
[解决办法]

选择d吧

方法可以重名,因为它代表的是一种"定义"
比如Interface1.g()完成业务A,Interface2.g()完成业务B
那你就把实现了Interface1,Interface2的MyClass中的MyClass.g()定义成 既完成业务A又完成业务B
至少不会出现矛盾


但字段不可以重名,因为它代表了是一种"值"
两个同名的字段 因为他们的"值"绝对会冲突的

也许编译这个类的时候不会有问题,但编译MyClass.VAL_B肯定会出问题
[解决办法]
选d?
[解决办法]
2楼高人。。。确实如此!
[解决办法]
学习中...
[解决办法]
当然是e啦。

a,b,c显然可以排除。至于d,虽然VAL_B同时存在于Interface1和Interface2中,但仍然是允许的,只不过要避免通过MyClass来引用VAL_B。所以,只要不出现MyClass.VAL_B就没问题,可以分别用Interface1.VAL_B和Interface2.VAL_B来使用不用接口中的常量。

热点排行