当前位置: 技术问答>java相关
请问接口和抽象类相同点和不同点是什么?
来源: 互联网 发布时间:2015-01-31
本文导语: 应该在什么场合下分别使用这两种类?谢谢! | 抽象类中至少有一个方法是没有实现的,不能有类的实例,其他与普通类一样了 接口中所有的方法都是空的,所有数据成员强制默认为static fin...
应该在什么场合下分别使用这两种类?谢谢!
|
抽象类中至少有一个方法是没有实现的,不能有类的实例,其他与普通类一样了
接口中所有的方法都是空的,所有数据成员强制默认为static final
接口中所有的方法都是空的,所有数据成员强制默认为static final
|
This brings up a question: Should you use an interface or an abstract class? An interface gives you the benefits of an abstract class and the benefits of an interface, so if it’s possible to create your base class without any method definitions or member variables you should always prefer interfaces to abstract classes. In fact, if you know something is going to be a base class, your first choice should be to make it an interface, and only if you’re forced to have method definitions or member variables should you change to an abstract class, or if necessary a concrete class.
//from thinking in java
//from thinking in java
|
接口的优点:可以实现多继承
缺点:需要把所有的方法都实现
抽象类的优点:可以先实现一部分方法,不需要每个方法都过载
缺点:只能单继承
缺点:需要把所有的方法都实现
抽象类的优点:可以先实现一部分方法,不需要每个方法都过载
缺点:只能单继承
|
所以,很多接口就只有一个函数。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。