tags:

views:

227

answers:

11

I have class method that returns a list of employees that I can iterate through. What's the best way to return the list? Typically I just return an ArrayList. However, as I understand, interfaces are better suited for this type of action. Which would be the best interface to use? Also, why is it better to return an interface, rather than the implementation (say ArrayList object)? It just seems like a lot more work to me.

+3  A: 

Personally, I would use a List<Employee> for creating the list on the backend, and then use IList when you return. When you use interfaces, it gives you the flexability to change the implementation without having to alter who's using your code. If you wanted to stick with an ArrayList, that'd be a non-generic IList.

bdukes
+1  A: 

The best way to do something like this would be to return, as you say, a List, preferably using generics, so it would be List<Employee>.

Returning a List rather than an ArrayList means that if later you decide to use, say, a LinkedList, you don't have to change any of the code other than where you create the object to begin with (i.e, the call to "new ArrayList())".

levand
A: 

Return type for your method should be IList<Employee>.

That means that the caller of your method can use anything that IList offers but cannot use things specific to ArrayList. Then if you feel at some point that LinkedList or YourCustomSuperDuperList offers better performance or other advantages you can safely use it within your method and not screw callers of it.

That's roughly interfaces 101. ;-)

Marcin
A: 

An interface is a contract between the implementation and the user of the implementation.

By using an interface, you allow the implementation to change as much as it wants as long as it maintains the contract for the users.

It also allows multiple implementations to use the same interface so that users can reuse code that interacts with the interface.

17 of 26
A: 

You don't say what language you're talking about, but in something .NETish, then it's no more work to return an IList than a List or even an ArrayList, though the mere mention of that obsolete class makes me think you're not talking about .NET.

Will Dean
+2  A: 

@ Jason

You may as well return IList<> because an array actually implements this interface.

Quibblesome
+1  A: 

If all you are doing is iterating through the list, you can define a method that returns the list as IEnumerable (for .NET).

By returning the interface that provides just the functionality you need, if some new collection type comes along in the future that is better/faster/a better match for your application, as long as it still implements IEnumerable you can completely rewrite your method, using the new type inside it, without changing any of the code that calls it.

Guy Starbuck
A: 

An interface is essentially a contract that a class has certain methods or attributes; programming to an interface rather then a direct implementation allows for more dynamic and manageable code, as you can completely swap out implementations as long as the "contract" is still held.

In the case you describe, passing an interface does not give you a particular advantage, if it were me, I would pass the ArrayList with the generic type, or pass the Array itself: list.toArray()

mmattax
+1  A: 

Is there any reason the collection needs to be ordered? Why not simply return an IEnumerable<Employee>? This gives the bare minimum that is required - if you later wanted some other form of storage, like a Bag or Set or Tree or whatnot, your contract would remain intact.

Chris Marasti-Georg
A: 

Actually you shouldn't return a List if thats a framework, at least not without thinking it, the recommended class to use is a Collection. The List class has some performance improvements at the cost of server extendability issues. It's in fact an FXCop rule.

You have the reasoning for that in this article

Jorge Córdoba
+1  A: 

I disagree with the premise that it's better to return an interface. My reason is that you want to maximize the usefulness a given block of code exposes.

With that in mind, an interface works for accepting an item as an argument. If a function parameter calls for an array or an ArrayList, that's the only thing you can pass to it. If a function parameter calls for an IEnumerable it will accept either, as well as a number of other objects. It's more useful

The return value, however, works opposite. When you return an IEnumerable, the only thing you can do is enumerate it. If you have a List handy and return that then code that calls your function can also easily do a number of other things, like get a count.

I stand united with those advising you to get away from the ArrayList, though. Generics are so much better.

Joel Coehoorn