Provide a private default Constructor for utility Classes | CAST Appmarq

Provide a private default Constructor for utility Classes


Rule Definition
Utility classes are not meant to be instantiated because all the functionalities that they provide are accessible without instantiating the class. Instantiating these classes means that the developer has misused the class. It also consumes memory unnecessarily. Instead, providing a private default constructor ensures that the class is not instantiated.

Remediation
Add a private default constructor to ensure that the class cannot be instantiated.

Violation Code Sample
public class MyClassUtility
{
      static public bool MyUtilityFunction() {
            // Do Something Usefull 
            return true;
      }

      static int UtilityCount;
}  // VIOLATION
Fixed Code Sample
public class MyClassUtility
{
      static public bool MyUtilityFunction() {
            // Do Something Usefull 
            return true;
      }

      private MyUtilityClass() {  // FIXED
            // Avoid instantiation of the class
      }
      static int UtilityCount;
}

Reference
http://www.javapractices.com/Topic40.cjp

Related Technologies
JEE

Health Factor

  Efficiency


Technical Criterion
Efficiency - Memory, Network and Disk Space Management

About CAST Appmarq

CAST Appmarq is by far the biggest repository of data about real IT systems. It's built on thousands of analyzed applications, made of 35 different technologies, by over 300 business organizations across major verticals. It provides IT Leaders with factual key analytics to let them know if their applications are on track.

Benchmark Statistics

Global Compliance

20.66%

Total Violations
140,255
Total Opportunities
176,777
Average Violations / App.
107.39
The compliance score represents 1 minus the ratio between the number of times a rule has been violated compared to the number of opportunities in a set of applications that the rule could have been violated.

Industry Insights

Financial Services

26.30%

Insurance

18.48%

Telecommunications

15.34%