Static method in a generic class? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T18:11:27Z http://stackoverflow.com/feeds/question/936377 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/936377/static-method-in-a-generic-class 5 Static method in a generic class? André Neves 2009-06-01T19:35:34Z 2009-06-01T22:18:09Z <p>In Java, I'd like to have something as:</p> <pre><code>class Clazz&lt;T&gt; { static void doIt(T object) { // shake that booty } } </code></pre> <p>But I get</p> <pre>Cannot make a static reference to the non-static type T</pre> <p>I don't understand generics beyond the basic uses and thus can't make much sense of that. It doesn't help that I wasn't able to find much info on the internet about the subject.</p> <p>Could someone clarify if such use is possible, by a similar manner? Also, why was my original attempt unsuccessful?</p> http://stackoverflow.com/questions/936377/static-method-in-a-generic-class/936402#936402 11 Answer by Jason S for Static method in a generic class? Jason S 2009-06-01T19:41:18Z 2009-06-01T19:41:18Z <p>Java doesn't know what T is until you instantiate a type.</p> <p>Maybe you can execute static methods by calling Clazz.doit(something) but it sounds like you can't.</p> <p>The other way to handle things is to put the type parameter in the method itself:</p> <pre><code>static &lt;U&gt; void doIt(U object) </code></pre> <p>which doesn't get you the right restriction on U, but it's better than nothing....</p> http://stackoverflow.com/questions/936377/static-method-in-a-generic-class/936411#936411 -1 Answer by Marcin Cylke for Static method in a generic class? Marcin Cylke 2009-06-01T19:43:23Z 2009-06-01T19:43:23Z <p>When you specify a generic type for your class, JVM know about it only having an instance of your class, not definition. Each definition has only parametrized type.</p> <p>Generics work like templates in C++, so you should first instantiate your class, then use the function with the type being specified.</p> http://stackoverflow.com/questions/936377/static-method-in-a-generic-class/936480#936480 0 Answer by skaffman for Static method in a generic class? skaffman 2009-06-01T19:59:06Z 2009-06-01T19:59:06Z <p>Others have answered your question already, but in addition I can thoroughly recomment the O'Reilly "Java Generics" book. It's a subtle and complex subject at times, and if often seems to have pointless restrictions, but the book does a pretty good job of explaining why java generics are the way they are.</p> http://stackoverflow.com/questions/936377/static-method-in-a-generic-class/936951#936951 2 Answer by newacct for Static method in a generic class? newacct 2009-06-01T21:43:37Z 2009-06-01T21:43:37Z <p>You can't use a class's generic type parameters in static methods or static fields. The class's type parameters are only in scope for instance methods and instance fields. For static fields and static methods, they are shared among all instances of the class, even instances of different type parameters, so obviously they cannot depend on a particular type parameter.</p> <p>It doesn't seem like your problem should require using the class's type parameter. If you describe what you are trying to do in more detail, maybe we can help you find a better way to do it.</p>