Hello everyone,
I am using VSTS 2008 + .Net 3.5 + C#. I heard the performance of C# List.ToArray is bad since what it does is memory copy for all elements to form a new array. Is that true?
thanks in advance, George
|
3
|
Hello everyone, I am using VSTS 2008 + .Net 3.5 + C#. I heard the performance of C# List.ToArray is bad since what it does is memory copy for all elements to form a new array. Is that true? thanks in advance, George
|
||
|
|
|
|
No that's not true. Performance is good since all it does is memory copy all elements (*) to form a new array. Of course it depends on what you define as "good" or "bad" performance. (*) references for reference types, values for value types. EDIT In response to your comment, using Reflector is a good way to check the implementation (see below). Or just think for a couple of minutes about how you would implement it, and take it on trust that Microsoft's engineers won't come up with a worse solution.
Of course, "good" or "bad" performance only has a meaning relative to some alternative. If in your specific case, there is an alternative technique to achieve your goal that is measurably faster, then you can consider performance to be "bad". If there is no such alternative, then performance is "good" (or "good enough"). EDIT 2 In response to the comment: "No re-construction of objects?" : No reconstruction for reference types. For value types the values are copied, which could loosely be described as reconstruction. |
||||||||||||
|
|
|
it creates new references in an array, but that's just the only thing that that method could and should do... |
||
|
|
|
Reasons to call ToArray()
Reasons not to call ToArray()
taken from here |
||||||||||||||||||||
|
|
|
Why not download a copy of Reflector and take a look for yourself what it does? |
||
|
|
|
Performance has to be understood in relative terms. Converting an array to a List involves copying the array, and the cost of that will depend on the size of the array. But you have to compare that cost to other other things your program is doing. How did you obtain the information to put into the array in the first place? If it was by reading from the disk, or a network connection, or a database, then an array copy in memory is very unlikely to make a detectable difference to the time taken. |
||
|
|
Yes, it's true that it does a memory copy of all elements. Is it a performance problem? That depends on your performance requirements. A E.g. a list with a default constructor starts at capacity 16, and when you The size difference is also the reason why |
||||
|
|
|
Short answer: No, List<>.ToArray is never a CPU-performance problem. In my experience, memory copies are rather cheap. If, for instance, you're doing any LINQ or IEnumerable<> stuff, you'll find that the CPU cost of memory copies to be negligible in comparison. On the other hand, copies do cost memory, which may be scarce. As a rule of thumb, I entirely disregard the cpu cost of ToArray (even the more expensive LINQ variants) - if you're going to be working with enough data to make ToArray's CPU cost relevant, then you're really doing heavy lifting, and likely the cost of using List in the first place if going to completely swamp ToArray in that scenario. |
||
|
|