标签:class hash nts turn 错误 ret shc ash 类型
判断下列语句是否正确,如果有错误,请指出错误所在?
interface A{
int add(final A a);
}
class B implements A{
long add(final A a){
return this.hashCode() + a.hashCode();
}
}
解答:返回值不是long类型
判断下列语句是否正确,如果有错误,请指出错误所在?interface A{
标签:class hash nts turn 错误 ret shc ash 类型
原文地址:https://www.cnblogs.com/borter/p/9552784.html