Statically Creating Immutable Objects
Many objects such as String, Exception, Font, Date objects are immutable, i.e., cannot be changed after allocation
Instead of allocating the same immutable object frequently, try to make it a static member of the class or, at least, move it out of inner loops
Also allows one-time “read” of object-internal state
A somewhat contrived example: