꼬꼬마

Utility classes should not have public constructors

song’s 2017. 5. 23. 13:25

Utility classes, which are a collection of static members, are not meant to be instantiated.

Even abstract utility classes, which can be extended, should not have public constructors.

Java adds an implicit public constructor to every class which does not define at least one explicitly.

Hence, at least one non-public constructor should be defined.

Noncompliant Code Example

class StringUtils { // Noncompliant
  public static String concatenate(String s1, String s2) {
    return s1 + s2;
  }
}

Compliant Solution

class StringUtils { // Compliant
  private StringUtils() {
    throw new IllegalAccessError("Utility class");
  }
  public static String concatenate(String s1, String s2) {
    return s1 + s2;
  }
}