I have found a post here in SO discussing the code change required to prevent writing to a static field from an instance method but why is not a good practice to do so ? Why did Java designers allow this then ?In other words why does the compiler not throw an error when some one attempts to do this ?
|
In the words of the 'findbugz' documentation:
Which is to say it isn't always wrong, simply that it is something that is often a source of errors. Instance objects manipulating static fields can be useful for example for lazy initialization of shared objects, so it is not always wrong, but it can be hard to get it right (particularly if multiple threads may be running at the same time). |
|||||
|
|
In addition to the above, from a documentation point of view it is easy for someone to assume it is an instance field, if you use the form:
or
Using the form
makes it clearer and prevents the findbugz warning (apparently, I haven't tested). Note, that won't prevent the multi-threading issues described. |
|||
|
|
|
It can be usefull, for example if you got an application that manages ants and you need to be able to acces the total number of created ants from the ant class. This can be done by writing to a static method that keeps track of the total number of ants every time you create a new ant writes to the static method addAnt(); |
|||
|
|