Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
Just an idea. There could be a problem with hot deployment, with lingering old class instances. An app server restart should show this. – Joop Eggen Mar 14 '12 at 18:12
1  
@MikeBaranczak In programming, "variable," often means any named quantity whether or not it varies. In cplusplus.com a variable is defined as such: "we can define a variable as a portion of memory to store a determined value"... there is hardly anything said about whether or not something varies. Semantically speaking, in the English language it's either a variable or a constant, but in programming lingo it's not really an oxymoron to say "constant variable." – Lirik Mar 14 '12 at 18:27

3 Answers

up vote 8 down vote accepted

No, there is only one instance of a static variable per ClassLoader.

 public class Foo {
      // only 1 of these
      private static int bar = 10;
 }

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 synchronized otherwise they could see different values according to race conditions.

share|improve this answer
These variables are final, so I'm not worried about that. I guess this hints at a different memory problem. – Dan Q Mar 14 '12 at 18:09
@DanQ Didn't think so but that was for posterity. – Gray Mar 14 '12 at 18:18

Static variables are explicitly not allocated depending on the number of threads. Instead, static variables are allocated once within the ClassLoader.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.