Content deleted Content added
m replace link to deleted Portal:Java (programming language) with Portal:Computer programming |
m linking |
||
Line 1,120:
=====Modifiers=====
* '''<code>abstract</code>''' - [[Abstract
* '''<code>static</code>''' - Makes the method static and accessible without creation of a class instance. However static methods cannot access non-static members in the same class.
* '''<code>final</code>''' - Declares that the method cannot be overridden in a subclass.
|