Static method in Java - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T13:01:46Zhttp://stackoverflow.com/feeds/question/1069343http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1069343/static-method-in-java0Static method in Javadavid valentine2009-07-01T14:14:10Z2009-07-01T14:49:54Z
<p>Looking through some java code and this just does not seem right. To me, it looks like every time you call projects, you will get a new hashmap, so that this statement is always false</p>
<pre><code>projects.get(soapFileName) != null
</code></pre>
<p>Seems like it should have a backing field</p>
<pre><code>public static HashMap<String,WsdlProject> projects = new HashMap<String,WsdlProject>();
public Object[] argumentsFromCallSoapui(CallT call, Vector<String> soapuiFiles, HashMap theDPLs,int messageSize)
{
try {
for (String soapFileName:soapuiFiles){
System.out.println("Trying "+soapFileName);
WsdlProject project ;
if (projects.get(soapFileName) != null){
project = projects.get(soapFileName);
} else {
project = new WsdlProject(soapFileName);
projects.put(soapFileName,project);
}
}
} ...
}
</code></pre>
http://stackoverflow.com/questions/1069343/static-method-in-java/1069356#10693563Answer by jjnguy for Static method in Javajjnguy2009-07-01T14:16:43Z2009-07-01T14:16:43Z<p>Nope. In Java that static variable only gets initialized once.</p>
<p>So, this line will only get called once.</p>
<pre><code>public static HashMap<String,WsdlProject> projects = new HashMap<String,WsdlProject> ();
</code></pre>
http://stackoverflow.com/questions/1069343/static-method-in-java/1069357#10693570Answer by Thomas Owens for Static method in JavaThomas Owens2009-07-01T14:16:53Z2009-07-01T14:16:53Z<p>You won't get a new HashMap every time you invoke a method on projects, if that's what you are referring to. A new HashMap will be created once, however all instances of the class will share a single HashMap.</p>
http://stackoverflow.com/questions/1069343/static-method-in-java/1069364#10693641Answer by Jon Skeet for Static method in JavaJon Skeet2009-07-01T14:17:49Z2009-07-01T14:17:49Z<p>You don't <em>call</em> <code>projects</code> - it's a field, not a method.</p>
<p>As it's a static field, it will be initialized exactly once (modulo the same type being loaded in multiple classloaders).</p>
http://stackoverflow.com/questions/1069343/static-method-in-java/1069375#10693753Answer by kdgregory for Static method in Javakdgregory2009-07-01T14:19:12Z2009-07-01T14:19:12Z<p>The <em>projects</em> variable will be initialized once, when the class first loads.</p>
<p>Generally, static maps of this sort are a bad idea: they often turn into memory leaks, as you hold entries long past their useful life.</p>
<p>In this particular case, I'd also worry about thread safety. If you have multiple threads calling this method (which is likely in code dealing with web services), you'll need to synchronize access to the map or you could corrupt it.</p>
<p>And, in a general stylistic note, it's a good idea to define variables using the least restrictive class: in this case, the interface <em>Map</em>, rather than the concrete class <em>HashMap</em>.</p>
http://stackoverflow.com/questions/1069343/static-method-in-java/1069576#10695761Answer by framer8 for Static method in Javaframer82009-07-01T14:49:54Z2009-07-01T14:49:54Z<p>if you add a static initialiser (static constructor?) you'll be able to see that statics are just initialised the first time the class is loaded:</p>
<pre><code>public class Hello {
static { System.out.println("Hello static World!"); }
...
}
</code></pre>