例如List接口,我可以理解为:
interface List extends Collection{}
而ArrayList的子类,则可以理解为:
public class ArrayList implements List{}???
可以这么理解