Is there a way of instantiating generic types with...
# announcements
d
Is there a way of instantiating generic types without a class reference, like in C# (e.g.
public  T make<T>() { return new T() }
? Or do I still have to use the good old java way of
public <T> T make(Class<T> type) { return type.newInstance(); }