Static method in a generic class? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T18:11:27Zhttp://stackoverflow.com/feeds/question/936377http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/936377/static-method-in-a-generic-class5Static method in a generic class?André Neves2009-06-01T19:35:34Z2009-06-01T22:18:09Z
<p>In Java, I'd like to have something as:</p>
<pre><code>class Clazz<T> {
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#93640211Answer by Jason S for Static method in a generic class?Jason S2009-06-01T19:41:18Z2009-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 <U> 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-1Answer by Marcin Cylke for Static method in a generic class?Marcin Cylke2009-06-01T19:43:23Z2009-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#9364800Answer by skaffman for Static method in a generic class?skaffman2009-06-01T19:59:06Z2009-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#9369512Answer by newacct for Static method in a generic class?newacct2009-06-01T21:43:37Z2009-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>