Content deleted Content added
m changed hyperlink destination from the general concept to that one which deals specifically with how it applies to object oriented programming, as that is most likely to be the area of interest someone clicking here is seeking. At least, that's what I was looking for. |
→Abstract methods: Made link to "abstract class" more specific. |
||
Line 44:
==Abstract methods==
An '''abstract method''' is one with only a [[method signature|signature]] and no [[method body|implementation body]]. It is often used to specify that a subclass must provide an implementation of the method, as in an [[Class (computer programming)#Abstract and concrete|abstract class]]. Abstract methods are used to specify [[Interface (computing)|interfaces]] in some programming languages.<ref>{{cite web|title=Abstract Methods and Classes|url=http://docs.oracle.com/javase/tutorial/java/IandI/abstract.html|website=oracle.com|publisher=Oracle Java Documentation|access-date=11 December 2014}}</ref>
===Example===
|