Abstract and Interface in java [duplicate]

只谈情不闲聊 提交于 2019-12-03 00:55:14

问题


Possible Duplicate:
Interface vs Abstract Class (general OO)
When to use abstract class or interface?

Can you provided implementations on a abstract class?

what's the difference between these two?

and when will I know when will I know to use them?


回答1:


This pages gives a good comparison: http://download.oracle.com/javase/tutorial/java/IandI/abstract.html . You could have found it with a very quick google search.




回答2:


Interface is used for defining a contract. Abstract classes are used for defining some methods which are common to all descendants and possibly some methods which will differ(they will be abstract). With interfaces or abstract classes polymorphism is reached.



来源:https://stackoverflow.com/questions/8121682/abstract-and-interface-in-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!