Skip to main content
2 of 2
added 1 characters in body
user avatar
user avatar

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

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

user1249