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

In C#, I can put a type constraint on a generic parameter that requires the generic type to have a default parameterless constructor. Can I do the same in Java?

In C#:

    public static T SomeMethodThatDoesSomeStuff<T>() where T : class, new()
    {
            // ... method body ...
    }

The class and new() constraints mean that T must be a class that can be called with the new operator with zero parameters. What little I know of Java generics, I can use extends to name a required super class. Can I use that (or any other supported operation) to achieve the above functionality?

share|improve this question
Related: stackoverflow.com/questions/1927789/… – BalusC Sep 27 '11 at 3:15

2 Answers

up vote 3 down vote accepted

No; in Java the typical solution is to pass a class, and doc the requirement of 0-arg constructor. This is certainly less static checking, but not too huge a problem

/** clazz must have a public default constructor */
public static <T> T f(Class<T> clazz)
    return clazz.newInstance();
share|improve this answer

No.

Because of type erasure, the type of <T> is not known at runtime, so it's inherently impossible to instantiate it.

share|improve this answer
Well somewhat. The problem is that contrary to C# in Java we can't specify constraints on constructors - ie specifying what kind of constructor an interface has to offer. Even with type erasure if we could do this, the above would work just fine and it would be oh so useful. Sadly it doesn't work, which means we have to use reflection to instantiate types and have to specify somewhere in the API "Has to offer argument less public constructor" - bad design flaw that. – Voo Sep 27 '11 at 2:53

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.