I am working on a group project in which we have several static constants declared in a Worker class. Multiple threads of this worker are spawned and our java application seems to be using a huge amount of memory. I am wondering if this is a result of each thread allocating more of these static constants, but I am not sure.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
No, there is only one instance of a static variable per ClassLoader.
However, it is important to realize that this doesn't mean that the value is automagically synchronized. If the threads are changing this value then it needs to be |
|||
|
Static variables are explicitly not allocated depending on the number of threads. Instead, static variables are allocated once within the ClassLoader. |
|||
|
|
|
If you are using a "huge" amount of memory e.g. many GB, I would use a memory profiler to find what the cause is and fix it if you can. If you are using a few hundred MB, I wouldn't worry about it unless you know this is a problem. |
|||
|
|