vote up 5 vote down star
1

In Java, I'd like to have something as:

class Clazz<T> {
  static void doIt(T object) {
    // shake that booty
  }
}

But I get

Cannot make a static reference to the non-static type T

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.

Could someone clarify if such use is possible, by a similar manner? Also, why was my original attempt unsuccessful?

flag

4 Answers

vote up 2 vote down check

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.

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.

link|flag
Upvoted, this answer actually explains the poster's problem instead of just providing a workaround. – Jorn Jun 1 at 23:20
I thought there would be a whole differente class for each type parameter, so Clazz<Integer>.doIt() wouldn't be the same method as Clazz<Long>.doIt(). I guess I was wrong. Really need to read something more in depth about generics. – André Neves Jun 2 at 20:05
vote up 11 vote down

Java doesn't know what T is until you instantiate a type.

Maybe you can execute static methods by calling Clazz.doit(something) but it sounds like you can't.

The other way to handle things is to put the type parameter in the method itself:

static <U> void doIt(U object)

which doesn't get you the right restriction on U, but it's better than nothing....

link|flag
Then I'd call the method without specifying any constraints, ie Clazz.doIt(object) instead of Clazz<Object>.doIt(object), right? Do you consider that OK? – André Neves Jun 1 at 19:45
The second syntax there is the more exact one, which you need if the compiler can't infer the type of the return value from the contaxt in which the method is called. In other words, if the compiler allows Clazz.doIt(object), then do that. – skaffman Jun 1 at 19:57
I tried Clazz<Object>.doIt(object) and got a compile-time error! "Syntax error on token(s), misplaced construct(s)". Clazz.doIt(object) works fine though, not even a warning. – André Neves Jun 1 at 20:14
vote up 0 vote down

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.

link|flag
Would that be "Java Generics and Collections" (oreilly.com/catalog/9780596527754)? – André Neves Jun 1 at 20:16
Yup, that's the one. – skaffman Jun 2 at 13:24
vote up -1 vote down

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.

Generics work like templates in C++, so you should first instantiate your class, then use the function with the type being specified.

link|flag
Java generics are quite different from C++ templates. The generic class is compiled by itself. In fact the equivalent code in C++ would work (calling code would look like Clazz<int>::doIt( 5 ) ) – dribeas Jun 1 at 20:06
I like this answer better than the accepted one... apart from the C++ template reference, the comment about the generic type only being for one instance of the class instead of the entire class is spot on. The accepted answer doesn't explain this, and just provides a workaround which doesn't have anything to do with why you can't use the class's generic type in a static method. – Jorn Jun 1 at 23:18

Your Answer

Get an OpenID
or

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