As you will probably know, the 'static' keyword in Java is used to denote fields, methods, and inner classes that do not belong to any instance of a class. They belong to the class itself and can be accessed when the class is loaded. In this post we will focus on static fields and very briefly discuss pitfalls of their usage. Static fields are used for a variety of reasons: To define constants In the Singleton design pattern As global stores for application wide settings For mapping default objects (like formats) with Strings Several other reasons depending on the requirements A few days back I was reviewing some code, and I realized that mutable static fields were being used in way too many places. This can make the code very brittle. When an object has a mutable static field, for all practical purposes this becomes a global variable, and thus has all the pitfalls of global variables. Some object might change the value, and another object that was depending on the old value wi...
Write Awesome User Manuals and Tutorials for Software Products