Static members are data members (variables) or methods that belong to a static or a nonstatic class itself, rather than to objects of the class. Static members always remain the same, regardless of where and how they are used. Because static members are associated with the class, it is not necessary to create an instance of that class to invoke them.
Static methods in languages, such as C# and Java, can be called using the following syntax: clsName.mthName(args), where clsName is the class name and mthName is the static method name. Static variables can also be accessed through their class name as follows: clsName.VarName, where VarName is the static variable name.
Since a static variable is associated with the class, only one copy of the variable exists in memory. This copy is shared by all objects of that class.
Some of the features of static members are as follows:
Read More ยป
Get Techopedia delivered to your inbox!