Created
August 29, 2016 01:44
-
-
Save droxer/ac28ffca61d82a2166a5a19d21043db4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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