Is there anything wrong with a class with all static methods?

后端 未结 16 1288
余生分开走
余生分开走 2021-01-30 16:43

I\'m doing code review and came across a class that uses all static methods. The entrance method takes several arguments and then starts calling the other static methods passin

16条回答
  •  半阙折子戏
    2021-01-30 17:04

    if there's no need of creating an object of a class, then there's no issue in creating all method as static of that class, but i wanna know what you are doing with a class fullof static methods.

提交回复
热议问题