When do we use interface extends interface

后端 未结 3 729
滥情空心
滥情空心 2021-01-13 12:10

I wish to know when we can use an interface extending another interface. I wish to know a practical example and when we use it.

3条回答
  •  隐瞒了意图╮
    2021-01-13 12:58

    Have a look at interfaces like java.util.Collection, java.util.Set to see how this is done, and how contracts can be tightened.

提交回复
热议问题