Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have to design a Utility class( such as ByteUtils or StreamUtils or StringUtils), what is the best design choice for them.

  • Should they be static classes (as I won't have any states to store)
  • Should they be non-static classes ( so that if the objects are not used, they will be gc'd)

PS: By static class, I meant a class with static methods(and not the inner static class)

Please give advice on design choices for this ?

share|improve this question
You need to reword this question. Outer level classes cannot be static in Java. They can have nothing but static methods. Not the same thing. – EJP Aug 16 '11 at 10:13
Yes. you are correct. I meant a class with methods being static – nibin012 Aug 16 '11 at 13:30

8 Answers

up vote 11 down vote accepted

If it is a general purpose utility, static is IMO better. You stated that you will not have any states to store, so I don't see why should you make it non-static. Declaring it to be static will save memory too.

share|improve this answer
A screw driver doesn't change, it always do the same thing. If the same can be said for your utility class, definitely make it static. – Gapton Aug 16 '11 at 7:15
2  
This hold true for all methods that do not rely on the state of the object. Not just utility class methods. – Dorus Aug 16 '11 at 8:14

Just because something can be static, doesn't mean it should be static.

There is another consideration to all this: mocking. It's harder to mock static methods in your tests than it is to mock the behaviour of an instance of a class.

Talk of unnecessary heap allocations and GCing of objects smacks of premature optimisation to me. The JVM will do a pretty good job at optimising away this sort of issue.

share|improve this answer

My utility classes look like this:

// final, because it's not supposed to be subclassed
public final class FooUtil {

    // private constructor to avoid unnecessary instantiation of the class
    private FooUtil() {
    }

    public static int doSomethingUseful() {
    }

    // ...
}

Note that, although this makes the utility methods easily testable, and easily accessible from the outside, it also makes the classes using them hard to unit-test, because it's not easy to mock these utility methods. Having too many of such utility classes can be a sign of a lack of OO design (procedural programming), and can really make the code hard to test.

If you're using a dependency injection framework (Spring, Guice, whatever), it might be a good idea to just make the utility class instantiatable, with non-static methods, and make it an injectable singleton. This way, classes using these utility methods can be tested by mocking the utility object.

share|improve this answer
We can unit test static methods using powermock code.google.com/p/powermock – nibin012 Aug 16 '11 at 7:53

The simplest way to define a Utility class is as an enum with no instances

public enum Utility {;
     public static int utilityMethod(int x) { /* ... */ }
}

A utility class shouldn't have any state or have minimal state so you shouldn't worrying about GCs.

You can have other stateful classes for specific purposes like Builder, Factory, you can create the object as desired and discard it when you have finished.

share|improve this answer
1  
Why enum, not static class? – nirmus Aug 16 '11 at 7:25
I assume you don't mean a static nested class. This avoids needing to remember to create the private constructor to prevent people accidentally creating an instance of the utility class. Enums are final by default. – Peter Lawrey Aug 16 '11 at 7:34
   
This is indeed a new idea for me. Thanks for this tip! But the general purpose of enum's are to store constants and have operations that support those constants. I guess it is also a tiny misuse of enum as we all understand. – nibin012 Aug 16 '11 at 7:58
1  
In Java, enum can have mutable fields, implement interfaces and abstract methods so they are much more than just constants. ;) – Peter Lawrey Aug 16 '11 at 9:38

Well, if you have no state to store then there is nothing to GC, so I would go with static, that way you avoid any unnecessary heap allocations and GC.

share|improve this answer

Usually utility classes contain static methods and no attributes, this approach makes it easier to use their methods without instantiating the class. Hope this helps.

share|improve this answer

Pure utility classes should usually be static. When you have a class with well-defined input and output, no side effects and no state, then by definition it should be a static class.

In general, don't add complexity (dependency injection in this case) before it's necessary and there's a benefit in doing it.

share|improve this answer

If you can make them static, then definitely do so!

In other words, if they don't have state, they should be static.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.