Stateless singleton VS Static methods
- by Sebastien Lorber
Hey,
Don't find any good answer to this simple question about helper/utils classes:
Why would i create a singleton (stateless) rather than static methods?
Why an object instance could be needed while the object has no state?
Sometimes i really don't know what to use...