posted 15 years ago
Static methods have nothing to do with performance or memory management. They affect different things. A static member:
Is typed by the compilerIs not polymorphicCannot be overridden, only hiddenBelongs to the class, not the objectThere is only one copy of it per classEvery object of that class has access to the same static memberStatic methods cannot access instance methods or instance fields.