Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a class with a generic type and I want to get the class of the generic type. I found a solution with the following code but when I use ProGuard for obfuscation, my app stops working.

Is there an other way of doing this?

public class comImplement<T> {

  private T _impl = null;

  public comImplement() {}

  public T getImplement() {

    if (_impl == null) {
      ParameterizedType superClass = 
        (ParameterizedType) getClass().getGenericSuperclass();
      Class<T> type = (Class<T>) superClass.getActualTypeArguments()[0];
      try {
        _impl = type.newInstance();
      } catch (Exception e) {
      }
    }
    return _impl;
  }
}
share|improve this question

1 Answer

up vote 2 down vote accepted

You can not get the type of superclass unless it's parametrized with another generic class, e.g - List or something like that. Due to reification type parameters will be lost after compilation. You may want to solve the problem with passing instance of class you're about to create, to method "getImplement, like below:

public T getImplement(Class<T> clz) {
   // do your initialization there
}

another problem which might raise with your code - is race condition in case if the object is shared between several threads.

share|improve this answer

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.