判断下列语句是否正确,如果有错误,请指出错误所在?interface A{

判断下列语句是否正确,如果有错误,请指出错误所在?

 

interface A{

 

int add(final A a);

 

}

 

class B implements A{

 

long add(final A a){

 

return this.hashCode() + a.hashCode();

 

}

 

}

 

解答:返回值不是long类型

 

posted @ 2018-08-29 10:30  Borter  阅读(290)  评论(0)    收藏  举报