vote up 0 vote down star

Say that you're writing a library to display things on the screen, so you create an IDisplayable interface. This interface has one method to create a control from the object: displayable.GetControl().

You want to create your own list type that can be displayed: MyList<T>. Now this list can only be displayed if T is an IDisplayable, so you could ask in the MyList class that T should implement IDisplayable. But you also want to use this list type in some places when T is not IDisplayable (and as a result this list will not be displayable). So is it possible to say that MyList implements IDisplayable if T implements IDisplayable? I would also be happy if MyList<T> always implements IDisplayable but throws an exception at runtime if you try to call GetControl() if T is not IDisplayable, but I'd like to know if there's a statically type-safe way to do it. Can this be done? Or am I looking at the wrong solution?

Edit:

I agree with the suggestions so far that MyList may have too many responsibilities. My original idea was to create a MyDisplayableList<T> : MyList<T> (where T : IDisplayable).

The problem with this approach is that I have a lot of methods that take a MyList and return a MyList (for example methods like Select in Linq). So if I use select on an MyDisplayableList I get back a MyList and them I'm unable to display it even though it is a MyList...is there a type safe way to handle this problem in C#?

flag

1  
why do you also want to use MyList<T> for non-displayable classes? It seems to me that you're asking MyList<T> to do too many things, but without the reasons it is hard to tell. – Mike Two Aug 29 at 17:58

4 Answers

vote up 5 vote down check

Simple. Check if the type is IDisplayable. If it's not, throw an InvalidOperationException:

if (!typeof(IDisplayable).IsAssignableFrom(typeof(T))) 
    throw new InvalidOperationException();

Or if you have an instance of T, simply check with that:

IDisplayable disp = instanceOfT as IDisplayable;
if (disp == null)
    throw new InvalidOperationException();
// do stuff with `disp`.

Your design might be flawed though. You might be putting too much in a class and violating single responsibility principle. Recheck your design first.

link|flag
Thank you, that is what I'm going to use. But I'd prefer a statically type-safe approach if it's available... – Jules Aug 29 at 20:17
There's no way to enforce that statically (for some specific methods of a class.) Type constraints are enforced at the type level. – Mehrdad Afshari Aug 29 at 20:21
vote up 7 vote down

It's not possible as you describe it. You should create two types of list :

public class MyList<T> : IList<T>
{
    ...
}

public class MyDisplayableList<T> : MyList<T> where T : IDisplayable
{
    ...
}
link|flag
Ah yes thank you that was my first idea, but I didn't tell you enough. The problem with this approach is that I have a lot of methods that take a MyList<T> and return a MyList<T> (for example methods like Select in Linq). So if I use select on an MyDisplayableList I get back a MyList and them I'm unable to display it...is there a type safe way to handle this problem in C#? – Jules Aug 29 at 20:20
Then make that method generic: public TList Foo<TList,TItem>(TList list) where TList : MyList<TItem> – dtb Aug 29 at 20:39
Thanks. I don't see how that would solve the problem however. For example if I did aMyList.Select((a) => a.ToDisplayable()) then I'd have a MyList<IDisplayable> but I wouldn't be able to call GetControl() on it because it's not a MyDisplayableList. – Jules Aug 29 at 20:54
System.Linq.Enumerable.Select returns an IEnumerable<...> not a MyList<...> – dtb Aug 29 at 21:17
Yes but I'm writing a different select. The Linq syntax allows this. – Jules Aug 29 at 23:30
vote up 1 vote down

Do you even need generics here?

I'd guess you have multiple classes implementing IDisplayable and want to put all instances of them in the same list. So you'd just need a

public class MyList : Collection<IDisplayable>, IDisplayable
{
    public void GetControl()
    {
        foreach (IDisplayable displayable in this)
        {
            displayable.GetControl();
        }
    }
}

If you really want to put non-IDisplayable instances in that list as well, find the common base class and define a

public class MyList2 : Collection<object>, IDisplayable
{
    public void GetControl()
    {
        foreach (IDisplayable displayable in this.OfType<IDisplayable>())
        {
            displayable.GetControl();
        }
    }
}
link|flag
vote up 1 vote down

I think that the reason you want MyList<T> to be able to work with both IDisplayable and non-IDisplayable is because there's some duplicated function.

I would suggest that you have the base implementation as MyListBase<T> which implements the base funtctions that both the list performs. Then you have MyDisplayableList inherits MyList (MyDisplayableList<T> : MyList<T> where T : IDisplayable), which performs functions that is specific to IDisplayable only.

If there is any function that is specific to non-IDisplayble, add NonDisplayableList<T> : MyListBase<T> to perform these functions.

link|flag

Your Answer

Get an OpenID
or

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