Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is probably a very basic question, but I'm really new to generics in Java and I'm having a hard time altering my thought process from the way things are done in C#, so bear with me.

I'm trying to build a generic repository in Java. I've created an IRepository interface that looks like this:

public interface IRepository<T extends IEntity>

And a Repository class that looks like this:

public class Repository<T extends IEntity> implements IRepository<T>

Now, from within the constructor of my Repository class, I'd like to be able to "divine" the exact type of T. For example, if I instantiated a repository like this:

IRepository<MyClass> repo = new Repository<MyClass>();

I'd like to know that T is actually MyClass. This is trivial in C#, but obviously generics are a totally different beast in Java and I can't seem to find anything that would help me do this.

share|improve this question
3  
Bozho's given you the answer. Just to expand a bit: Knowing what the actual type is at runtime violates the contract. The contract is that IRepository will contain IEntity objects. If you need to know more, in your implementation, than is available from IEntity, you need to refactor IEntity; otherwise, you're tightly coupling IRepository to realized classes. – T.J. Crowder Feb 21 '10 at 11:09
2  
Also, if you are serious about going java you should consider leaving that I-notation behind. Some say it serves a good purpose but IMHO it will just look inconsistent when you work with other interfaces in java (like Map, InputStream etc). – Fredrik Feb 21 '10 at 11:17
The I notation is from COM, IIRC. It's very difficult to tell from client code (without using reflection) whether a type is an interface or an abstract class (unless it has public non-final fields or something, I guess). – Tom Hawtin - tackline Feb 21 '10 at 16:07

3 Answers

up vote 5 down vote accepted

Java uses type erasure, so the specific information is lost at runtime - you only know that this type is generic, not what's the specific argument you've supplied at compile time.

share|improve this answer
The specific information is lost; the generic information is...generic. :-) – T.J. Crowder Feb 21 '10 at 11:07
thanks; reworeded :) – Bozho Feb 21 '10 at 11:08
I think this is the right answer. This clearly explains why what I originally wanted to accomplish simply isn't possible with Java's implementation of generics. – Ragesh Feb 24 '10 at 15:23

You can always add the actual type of T in your constructor, like so:

public class Repository<T> implements IRepository<T>
  public Repository(Class<T> type) {
  }
}

and instantiate like

IRepository<MyClass> repo = new Repository<MyClass>(MyClass.class);
share|improve this answer
This is a good workaround, but I think it would still bite me higher up in the chain. I can't think of a way to create a Repository Factory using this same approach. – Ragesh Feb 24 '10 at 15:25

I've done something similar (also to implement a Repository/Registry pattern) and with a bit of work you can actual find out the type. Note however I wasn't doing this with interfaces, but with a base class, and also note that it took a bit of trial and error to arrive at a solution that worked. This code was running on the Sun JVM so it may be that I've stumbled into an area that is JVM specific.

Also - as another comment mentioned, just because you can do this, doesn't mean you necessarily should :)

import java.lang.reflect.ParameterizedType;
...
public static Class<?> type(Object target) {
    Class base = target.getClass();
    while (base != null) {
        Object gsuper = base.getGenericSuperclass();
        if (gsuper != null && gsuper instanceof ParameterizedType) {
            Object o = ((ParameterizedType) gsuper).getActualTypeArguments()[0];
            if (o instanceof Class) {
                return (Class<?>) o;
            }
        }
        base = base.getSuperclass();
    }

    return null;
}

I used this from my BaseRepository class like:

Class<?> type = type(SomeRepository);

where:

public class SomeRepository extends Repository<MyEntity> {
... 
}
share|improve this answer
This only helps when you actually subclass, though... not just instantiate like the OP is doing. – PSpeed Feb 21 '10 at 12:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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