Can anyone explain to me why I would want to use IList over List in C#?
Related question: Why is it considered bad to expose List<T>
|
11
|
Can anyone explain to me why I would want to use IList over List in C#? Related question: Why is it considered bad to expose
|
|||
|
|
|
|
If you are exposing your class through a library that others will use, you generally want to expose it via interfaces rather than concrete implementations. This will help if you decide to change the implementation of your class later to use a different concrete class. In that case the user's of your library won't need to update their code since the interface doesn't change. If you are just using it internally, you may not care so much, and using List<T> may be ok. |
||||||||||
|
|
|
IList<T> is an interface so you can inherit another class and still implement IList<T> while inheriting List<T> prevents you to do so. For example if there is a class A and your class B inherits it then you can't use List<T>
|
||
|
|
|
|
You would because defining an IList or an ICollection would open up for other implementations of your interfaces. You might wantet to have a IOrderRepository that defines a collection of orders in either a IList or ICollection, then you could have different kinds of implementations provide a list of orders as long as they conform to "rules" defined by your IList or ICollection. |
||
|
|
|
|
A principle of TDD and OOP generally is programming to an interface not an implementation. In this specific case since you're essentially talking about a language construct, not a custom one it generally won't matter, but say for example that you found List didn't support something you needed. If you had used IList in the rest of the app you could extend List with your own custom class and still be able to pass that around without refactoring. The cost to do this is minimal, why not save yourself the headache later? It's what the interface principle is all about. |
||
|
|
|
|
In this case you could pass in any class which implements the IList<Bar> interface. If you used List<Bar> instead, only a List<Bar> instance could be passed in. The IList<Bar> way is more loosely coupled than the List<Bar> way. |
|||
|
|
|
|
The most important case for using interfaces over implementations is in the parameters to your API. If your API takes a List parameter, then anyone who uses it has to use List. If the parameter type is IList, then the caller has much more freedom, and can use classes you never heard about, which may not even have existed when your code was written. |
||
|
|
|
|
List< T > is a specific implementation of IList< T >, which is a container that can be addressed the same way as a linear array T[] using an integer index. When you specify IList as the type of the method's argument, you only specify that you need certain capabilities of the container. For example, the interface specification does not enforce a specific data structure to be used. The implementation of List< T > happens to the same performance for accessing, deleting and adding elements as a linear array. However, you could imagine an implementation that is backed by a linked list instead, for which adding elements to the end is cheaper (constant-time) but random-access much more expensive. (Note that the .NET LinkedList< T > does not implement IList< T >.) This example also tells you that there may be situations when you need to specify the implementation, not the interface, in the argument list: In this example, whenever you require a particular access performance characteristic. This is usually guaranteed for a specific implementation of a container (List< T > documentation: "It implements the IList< T > generic interface using an array whose size is dynamically increased as required."). Additionally, you might want to consider exposing the least functionality you need. For example. if you don't need to change the content of the list, you should probably consider using IEnumerable< T >, which IList< T> extends. |
||
|
|
|
Interface is a promise (or a contract). As it is always with the promises - smaller the better. |
||
|
|
|
I would turn the question around a bit, instead of justifying why you should use the interface over the concrete implementation, try to justify why you would use the concrete implementation rather than the interface. If you can't justify it, use the interface. |
||
|
|
|
The less popular answer is programmers like to pretend their software is going to be re-used the world over, when infact the majority of projects will be maintained by a small amount of people and however nice interface-related soundbites are, you're alluding yourself. Architecture Astronauts. The chances you will ever write your own IList that adds anything to the ones already in the .NET framework are so remote that it's theoretical jelly tots reserved for "best practices".
Obviously if you are being asked which you use in an interview, you say IList, smile, and both look pleased at yourselves for being so clever. Or for a public facing API, IList. Hopefully you get my point. |
||
|
|