Java
Assignment to static field from instance context
Warning
New
Last modified: 03 December 2024 Reports assignment to, or modification of static
fields from within an instance method.
Although legal, such assignments are tricky to do safely and are often a result of marking fields static
inadvertently.
Example:
class Counter {
private static int count = 0;
void increment() {
// Warning: updating a static field
// from an instance method
count++;
}
}
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
AssignmentToStaticFieldFromInstanceMethod
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!
Was this page helpful?