DEV Community

Discussion on: Sometimes, the elegant implementation is just a function

 
mortoray profile image
edA‑qa mort‑ora‑y

First, let me agree that in Java, and C#, a class with static methods is the correct approach.

What I lament is that the language forces you to do this. They have packages/namespaces which should be used for this purpose. A class is meant to represent an instantiable type, if you have only statics in it it violates this definition. That is, I'm complaining the languages are creating confusion as to what a "class" is.

Thread Thread
 
awwsmm profile image
Andrew (he/him)

Ah I see. The Utils pattern really does fly in the face of OOP, doesn't it?

Thread Thread
 
mortoray profile image
edA‑qa mort‑ora‑y

Yes.

Thread Thread
 
bertilmuth profile image
Bertil Muth

I understand that you see this as a problem, conceptually. In practice in Java, you could statically import the class and use the methods like functions. In that case, the class would ask more like a namespace than a „true“ OOP class.