Skip to content

Instantly share code, notes, and snippets.

@droxer
Created August 29, 2016 01:44
Show Gist options
  • Save droxer/ac28ffca61d82a2166a5a19d21043db4 to your computer and use it in GitHub Desktop.
Save droxer/ac28ffca61d82a2166a5a19d21043db4 to your computer and use it in GitHub Desktop.
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.List;
public abstract class TypeReference<T> {
private final Type type;
private volatile Constructor<?> constructor;
public TypeReference() {
Type superclass = getClass().getGenericSuperclass();
if (superclass instanceof Class) {
throw new RuntimeException("Missing type parameter");
}
this.type = ((ParameterizedType)superclass).getActualTypeArguments()[0];
}
public T newInstance() throws NoSuchMethodException,
IllegalAccessException, InvocationTargetException, InstantiationException {
if (constructor == null) {
Class<?> rawType = type instanceof Class<?>
? (Class<?>) type
: (Class<?>) ((ParameterizedType)type).getRawType();
constructor = rawType.getConstructor();
}
return (T)constructor.newInstance();
}
public Type getType() {
return this.type;
}
public static void main(String[] args) throws Exception {
List<String> l1 = new TypeReference<ArrayList<String>>() {}.newInstance();
List l2 = new TypeReference<ArrayList>() {}.newInstance();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment