Given a huge collection of objects, is there a performance difference between the the following?
myCollection.Contains(myElement)
myCollection.Any(currentElement => currentElement == myElement)
Contains() is an instance method, and its performance depends largely on the collection itself. For instance, Contains() on a List is O(n), while Contains() on a HashSet is O(1).
Any() is an extension method, and will simply go through the collection, applying the delegate on every object. It therefore has a complexity of O(n).
Any() is more flexible however since you can pass a delegate. Contains() can only accept an object.
It depends on the collection. If you have an ordered collection then Contains might do a smart search (binary, hash, b-tree, etc.) while with Any() you are basically stuck with enumerating until you find it (assuming LINQ to Objects)
Also note that in your example Any() is using the "==" operator which will check for referential equality while Contains will use IEquitable or the Equals() method which might be overriden.
I suppose that would depend on the type of myCollection
is which dictates how Contains()
is implemented. If a sorted binary tree for example, it could search smarter. Also it may take the element's hash into account. Any()
on the other hand will enumerate through the collection until the first element that satisfies the condition is found. There are no optimizations for if the object had a smarter search method.
来源:https://stackoverflow.com/questions/4445219/linq-ring-any-vs-contains-for-huge-collections