I think there are people who may be able to answer this, this is a question out of curiosity:

The generic CreateInstance method from System.Activator, introduced in .NET v2 has no type constraints on the generic argument but does require a default constructor on the activated type, otherwise a MissingMethodException is thrown. To me it seems obvious that this method should have a type constraint like

Activator.CreateInstance<T>() where T : new() {
   ...
}

Just an omission or some anecdote lurking here?

Update

As pointed out, the compiler does not allow you to write

private T Create<T>() where T : struct, new()
error CS0451: The 'new()' constraint cannot be used with the 'struct' constraint

However, see comments a struct can be used as type argument to a generic method specifying a new() constraint. Under this circumstance the given answer seems the only valid reason to not constrain the method...

Thanks for looking over this!

link|improve this question

+1 Very interesting question. I can't think of a reason why it shouldn't be there, so I'm curious to find out why, too! – Adam Robinson Mar 3 '11 at 23:29
As to your update, because it's redundant; all value types have a default constructor that initializes all values to defaults (it's what you get when you call default(T). – Adam Robinson Mar 3 '11 at 23:30
All structs have default ctors in C#. – Linkgoron Mar 3 '11 at 23:30
3  
Just to clarify, given void Foo<T>() where T:new() {}, Foo<DateTime>(); or Foo<int>(); are both perfectly valid calls that the compiler won't complain about. – Adam Robinson Mar 3 '11 at 23:31
Excellent question. I am baffled. The new constraint appears to have been introduced at the same time as generics, so it's not like it's a backwards-compatibility issue. Maybe they just forgot? – StriplingWarrior Mar 3 '11 at 23:32
feedback

1 Answer

up vote 6 down vote accepted

I could be wrong, but the main benefit as I see it is that it allows you to do something like this:

// Simple illustration only, not claiming this is awesome code!
class Cache<T>
{
    private T _instance;

    public T Get()
    {
        if (_instance == null)
        {
            _instance = Create();
        }

        return _instance;
    }

    protected virtual T Create()
    {
        return Activator.CreateInstance<T>();
    }
}

Note that if Activator.CreateInstance<T> had a where T : new() constraint, then the Cache<T> class above would also need that constraint, which would be overly restrictive since Create is a virtual method and some derived class might want to use a different means of instantiation, such as calling a type's internal constructor or using a static builder method.

link|improve this answer
+1. That's an excellent point. While you're assuming some risk (it's possible that T doesn't have a default constructor here, obviously), this seems like a perfectly valid case. – Adam Robinson Mar 3 '11 at 23:33
Yes, sounds reasonable – flq Mar 3 '11 at 23:35
Incidentally, it looks like System.Runtime.CompilerServices.ConditionalWeakTable does this very thing. – Adam Robinson Mar 3 '11 at 23:38
Also worth noting that a CreateInstance<T> method constrained with where T : new() would be completely redundant. Since T must be known at compile-time, then any T constrained with where T : new() can be created using var x = new T() syntax. – LukeH Mar 3 '11 at 23:44
1  
@Dan, LukeH: For what it's worth, calls to new T() are, in fact, turned into calls to Activator.CreateInstance<T>(). – Adam Robinson Mar 4 '11 at 4:45
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.