vote up 6 vote down star
1

Is it possible for a generic interface's type to be based on a specific parent class?

For example:

public interface IGenericFace<T : BaseClass>
{
}

Obviously the above code doesn't work but if it did, what I'm trying to tell the compiler is that T must be a sub-class of BaseClass. Can that be done, are there plans for it, etc.?

I think it would be useful in terms of a specific project, making sure a generic interface/class isn't used with unintended type(s) at compile time. Or also to sort of self-document: show what kind of type is intended.

flag

Someone should edit the question so it applies to generics in general not just c# and then be retagged. – Micah Oct 27 '08 at 13:50

4 Answers

vote up 28 vote down check
public interface IGenericFace<T> where T : SomeBaseClass
link|flag
You can find more info on how to constrain the type at msdn.microsoft.com/en-us/library/… – tvanfosson Oct 23 '08 at 18:01
vote up 3 vote down

yes.

public interface IGenericFace<T>
    where T : BaseClass
{
}
link|flag
this should be deleted, I don't see how it is adding anything - Kyralessa already answered this. – Jason Bunting Oct 23 '08 at 18:16
vote up 0 vote down

More info on Generic Interfaces: http://msdn.microsoft.com/en-us/library/kwtft8ak(VS.80).aspx

link|flag
vote up 16 vote down

What your are referring to is called "Generic Constraints". There are numerous constraints that can be put on a generic type.

Some baseic examples are as follows:

  • where T: struct - The type argument must be a value type. Any value type except Nullable -can be specified. See Using Nullable Types (C# Programming Guide) for more information.

  • where T : class - The type argument must be a reference type; this applies also to any class, interface, delegate, or array type.

  • where T : new() - The type argument must have a public parameterless constructor. When used together with other constraints, the new() constraint must be specified last.

  • where T : <base class name> - The type argument must be or derive from the specified base class.

  • where T : <interface name> - The type argument must be or implement the specified interface. Multiple interface constraints can be specified. The constraining interface can also be generic.

  • where T : U - The type argument supplied for T must be or derive from the argument supplied for U. This is called a naked type constraint.

These can also be linked together like this:

C#

public class TestClass<T> Where T : MyBaseClass, INotifyPropertyChanged, new() { }
public interface IGenericFace<T> where T : SomeBaseClass

VB

Public Class TestClass(Of T As {MyBaseClass, INotifyPropertyChanged, New})
Public Interface IGenericInterface(Of T As SomeBaseClass)
link|flag
It would be worth changing the example - if you specify a base class name, that has to come before any interfaces. And you meant "new()" instead of "New()". – Jon Skeet Oct 23 '08 at 19:26
Duly noted and changed. – Micah Oct 27 '08 at 10:54

Your Answer

Get an OpenID
or

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