Properties of static class members
Static attributes are initialized as follows: ints, floats -> 0, bools -> false, references -> null |
static methods have access only to static methods and attributes of a class (obviously).They can't have use the "this" reference since it doesn't make any sense. |
|
Comments
Related