为了账号安全,请及时绑定邮箱和手机立即绑定

Comparator 接口内容

我在查看Comparator接口文件的时候 发现里面除了CompareTo接口方法之外  还有很多有方法体的其他方法如

https://img1.sycdn.imooc.com//5d3fb8600001f66610510400.jpg

这是为什么?接口中不是不能有方法的实现吗?

正在回答

1 回答

接口中确实不能有方法的实现,但可以进行接口回调,

比如我定义一个human接口和一个young类,

interface human

{

void Output();

}

class young implements human

{

    public young(){}

    public void Ouput(){}

}

human h=new young();

h.Output();

这样做是可以的,


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

Comparator 接口内容

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信