我如何选择抽象类或接口..?
Possible Duplicates:
Interface vs Base class
Abstract classes vs Interfaces
How can we take decision about when we have to use Interface and when Abstract Class..??
Any idea..??
Thank in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您想提供方法的共享实现吗?
使用抽象类。
您只是想提供一个契约来指定对象必须提供哪些外部功能吗?
使用接口。
Do you want to provide a shared implementation of a method?
Use an abstract class.
Do you simply want to provide a contract that specifies what external functionality an object must provide?
Use an interface.
我的经验法则是:当存在共享代码时使用抽象类,否则使用接口。
My rule of thumb is: Use an abstract class when there is shared code, otherwise use an interface.
如果您计划对部分方法和属性进行相同的实现,则使用抽象类;如果您只想在所有类中保留相同的成员,但对所有类使用不同的实现,则使用接口。
换句话说,如果派生类的某些方法在每个派生类中应该完全相同,则使用接口,否则使用接口。
If you plan to have the same implementation of part of your methods and properties then use abstract class, if you want just to hold the same members in all classes, but with a diffrent implementation for all of them then use interface.
In other words use interface if some of your derived class methods should be exacaly the same in each derived class, otherwise use interface.
看看这篇有趣的文章,它将帮助您了解 上的接口和抽象类之间的差异代码项目。
Have a look at this interesting article that will help you understand the differences between Interfaces and Abstract Classes on CodeProject.