Static method in Java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T13:01:46Z http://stackoverflow.com/feeds/question/1069343 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1069343/static-method-in-java 0 Static method in Java david valentine 2009-07-01T14:14:10Z 2009-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&lt;String,WsdlProject&gt; projects = new HashMap&lt;String,WsdlProject&gt;(); public Object[] argumentsFromCallSoapui(CallT call, Vector&lt;String&gt; 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#1069356 3 Answer by jjnguy for Static method in Java jjnguy 2009-07-01T14:16:43Z 2009-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&lt;String,WsdlProject&gt; projects = new HashMap&lt;String,WsdlProject&gt; (); </code></pre> http://stackoverflow.com/questions/1069343/static-method-in-java/1069357#1069357 0 Answer by Thomas Owens for Static method in Java Thomas Owens 2009-07-01T14:16:53Z 2009-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#1069364 1 Answer by Jon Skeet for Static method in Java Jon Skeet 2009-07-01T14:17:49Z 2009-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#1069375 3 Answer by kdgregory for Static method in Java kdgregory 2009-07-01T14:19:12Z 2009-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#1069576 1 Answer by framer8 for Static method in Java framer8 2009-07-01T14:49:54Z 2009-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>