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.
Class_name.static_atrribute_name

Class_name.static_method_name()
Comments