What are the cons of creating static utility classes? The more I've made, the more I find them extremely useful. I understand that they lack object oriented design, but I still love them probably more than I should. Are there any other cons for their use?
|
|
There is nothing wrong with them, in the right context. If you have free-standing, stateless methods (such as those found in |
|||||||||
|
|
The main disadvantage IMO is the impossibility, using most of the mocking frameworks, to mock the implementation of such utility methods in order to unit-test some class using these utility methods. For example, Using |
|||||||||||
|
|
I had talked about this sometime ago in a post which you can find here. The chief problems in the usage of a static method are:
But if the method itself is not too cumbersome and is pretty much predictable (i.e. not too many requirements for different variations of the implementations etc.) then there is no reason why a static method would not fit the bill. So, moral of the story is Use it but be aware of side affects. |
|||
|
|