Static methods neither require an instance of the class nor can they implicitly access the data (or this, self, Me, etc.) of such an instance. A static method is distinguished in some programming languages with the static keyword placed somewhere in the method's signature. Static methods are called "static" because they are resolved statically (i.e. at compile time) based on the class they are called on; and not dynamically, as in the case with instance methods which are resolved polymorphically based on the runtime type of the object. Therefore, static methods cannot be overridden.
Synonyms
static-methodStats
created |
1 year ago |
viewed |
35 times |
active |
1 year ago |
editors |
1 |
Recent Hot Answers
How do I make a static class thread-safe?Overriding static methods in java
Java: Calling a static method in the main() method
Pointers to static methods in Python
Simulating class properties in (Win32) Delphi
more »
Related Tags
java × 204c# × 163
c++ × 102
php × 101
static × 84
oop × 68
class × 48
python × 46
static-members × 38
.net × 33
asp.net × 30
objective-c × 28
inheritance × 24
methods × 23
generics × 16
singleton × 16
design-patterns × 16
multithreading × 16
thread-safety × 15
javascript × 15
performance × 15
design × 13
class-method × 13
unit-testing × 12