Skip to main content
1 of 2
user avatar
user avatar

The problem with static method comes the moment you need a sub-class.

Static methods cannot be overriden in sub-classes, hence your new classes cannot provide new implementations of the methods, making them less useful.

user1249