Does an empty array in .NET use any space? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T05:09:34Zhttp://stackoverflow.com/feeds/question/151936http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/151936/does-an-empty-array-in-net-use-any-space10Does an empty array in .NET use any space?Orion Edwards2008-09-30T06:07:53Z2009-02-16T17:54:32Z
<p>I have some code where I'm returning an array of objects.</p>
<p>Here's a simplified example:</p>
<pre><code>string[] GetTheStuff() {
List<string> s = null;
if( somePredicate() ) {
s = new List<string>(); // imagine we load some data or something
}
return (s == null) ?
new string[0] :
s.ToArray();
}
</code></pre>
<p>The question is, how expensive is the <code>new string[0]</code> ?<br />
Should I just return null and make the caller accept null as a valid way of indicating "nothing was found"?</p>
<p>NB: This is being called in a loop which gets run hundreds and hundreds of times, so it's one of the few cases where I think this kind of optimiziation is not actually 'premature'.</p>
<p>PS: And even if it was premature, I'd still like to know how it works :-)</p>
<h3>Update:</h3>
<p>Initially when I asked if it used any space, I was thinking of things from the 'C/C++' point of view, kind of like how in C, writing <code>char a[5];</code> will allocate 5 bytes of space on the stack, and <code>char b[0];</code> will allocate 0 bytes.</p>
<p>I realise this is not a good fit for the .NET world, but I was curious if this was something that the compiler or CLR would detect and optimize out, as a non-resizeable array of size zero really shouldn't (as far as I can see?) require any storage space.</p>
http://stackoverflow.com/questions/151936/does-an-empty-array-in-net-use-any-space/151939#1519393Answer by Matt Hamilton for Does an empty array in .NET use any space?Matt Hamilton2008-09-30T06:10:35Z2008-09-30T06:10:35Z<p>I would guess that an empty array uses only the space needed to allocate the object pointer itself.</p>
<p>From memory the API guidelines say that you should always return an empty array from a method that returns an array rather than returning null, so I'd leave your code the way it is regardless. That way the caller knows he's guaranteed to get an array (even an empty one) and need not check for null with each call.</p>
<p>Edit: A link about returning empty arrays:</p>
<p><a href="http://wesnerm.blogs.com/net_undocumented/2004/02/empty_arrays.html" rel="nofollow">http://wesnerm.blogs.com/net_undocumented/2004/02/empty_arrays.html</a></p>
http://stackoverflow.com/questions/151936/does-an-empty-array-in-net-use-any-space/151941#1519413Answer by Jon Limjap for Does an empty array in .NET use any space?Jon Limjap2008-09-30T06:13:23Z2008-09-30T06:13:23Z<p>Declared arrays will always have to contain the following information:</p>
<ul>
<li>Rank (number of dimensions)</li>
<li>Type to be contained</li>
<li>Length of each dimension</li>
</ul>
<p>This would most likely be trivial, but for higher numbers of dimensions and higher lengths it <em>will</em> have a performance impact on loops.</p>
<p>As for return types, I agree that an empty array should be returned instead of null.</p>
<p>More information here: <a href="http://msdn.microsoft.com/en-us/magazine/cc301755.aspx" rel="nofollow">Array Types in .NET</a></p>
http://stackoverflow.com/questions/151936/does-an-empty-array-in-net-use-any-space/151947#1519470Answer by Dr8k for Does an empty array in .NET use any space?Dr8k2008-09-30T06:15:43Z2008-09-30T06:28:15Z<p>If I understand correctly, a small amount of memory will be allocated for the string arrays. You code essentially requires a generic list to be created anyway, so why not just return that?</p>
<p>[EDIT]Removed the version of the code that returned a null value. The other answers advising against null return values in this circumstance appear to be the better advice[/EDIT]</p>
<pre><code>List<string> GetTheStuff()
{
List<string> s = new List<string();
if (somePredicarte())
{
// more code
}
return s;
}
</code></pre>
http://stackoverflow.com/questions/151936/does-an-empty-array-in-net-use-any-space/151950#15195028Answer by Jon Skeet for Does an empty array in .NET use any space?Jon Skeet2008-09-30T06:16:23Z2008-09-30T06:16:23Z<p>Even if it's being called "hundreds and hundreds" of times, I'd say it's a premature optimization. If the result is clearer as an empty array, use that.</p>
<p>Now for the actual answer: yes, an empty array takes some memory. It has the normal object overhead (8 bytes on x86, I believe) and 4 bytes for the count. I don't know whether there's anything beyond that, but it's not entirely free. (It <em>is</em> incredibly cheap though...)</p>
<p>Fortunately, there's an optimization you can make without compromising the API itself: have a "constant" of an empty array. I've made another small change to make the code clearer, if you'll permit...</p>
<pre><code>private static readonly string[] EmptyStringArray = new string[0];
string[] GetTheStuff() {
if( somePredicate() ) {
List<string> s = new List<string>();
// imagine we load some data or something
return s.ToArray();
} else {
return EmptyStringArray;
}
}
</code></pre>
<p>If you find yourself needing this frequently, you could even create a generic class with a static member to return an empty array of the right type. The way .NET generics work makes this trivial:</p>
<pre><code>public static class Arrays<T> {
public static readonly Empty = new T[0];
}
</code></pre>
<p>(You could wrap it in a property, of course.)</p>
<p>Then just use: Arrays<string>.Empty;</p>
<p>EDIT: I've just remembered <a href="http://blogs.msdn.com/ericlippert/archive/2008/09/22/arrays-considered-somewhat-harmful.aspx" rel="nofollow">Eric Lippert's post on arrays</a>. Are you sure that an array is the most appropriate type to return?</p>
http://stackoverflow.com/questions/151936/does-an-empty-array-in-net-use-any-space/151958#1519582Answer by VVS for Does an empty array in .NET use any space?VVS2008-09-30T06:18:32Z2008-09-30T08:27:09Z<p>This is not a direct answer to your question.</p>
<p>Read why <a href="http://blogs.msdn.com/ericlippert/archive/2008/09/22/arrays-considered-somewhat-harmful.aspx" rel="nofollow">arrays are considered somewhat harmful</a>. I would suggest you to return an IList<string> in this case and restructure the code a little bit:</p>
<pre><code>IList<string> GetTheStuff() {
List<string> s = new List<string>();
if( somePredicate() ) {
// imagine we load some data or something
}
return s;
}
</code></pre>
<p>In this way the caller doesn't have to care about empty return values.</p>
<p><hr /></p>
<p><strong>EDIT</strong>: If the returned list should not be editable you can wrap the List inside a <a href="http://msdn.microsoft.com/en-us/library/ms132476.aspx" rel="nofollow">ReadOnlyCollection</a>. Simply change the last line to. I also would consider this best practice.</p>
<pre><code> return new ReadOnlyCollection(s);
</code></pre>
http://stackoverflow.com/questions/151936/does-an-empty-array-in-net-use-any-space/152141#1521412Answer by Greg Beech for Does an empty array in .NET use any space?Greg Beech2008-09-30T07:53:45Z2008-09-30T07:53:45Z<p>Yes, as others have said, the empty array takes up a few bytes for the object header and the length field.</p>
<p>But if you're worried about performance you're focusing on the wrong branch of execution in this method. I'd be much more concerned about the <em>ToArray</em> call on the populated list which will result in a memory allocation equal to its internal size and a memory copy of the contents of the list into it.</p>
<p>If you really want to improve performance then (if possible) return the list directly by making the return type one of: <code>List<T>, IList<T>, ICollection<T>, IEnumerable<T></code> depending on what facilities you need from it (note that less specific is better in the general case).</p>
http://stackoverflow.com/questions/151936/does-an-empty-array-in-net-use-any-space/553975#5539752Answer by Drew Noakes for Does an empty array in .NET use any space?Drew Noakes2009-02-16T17:54:32Z2009-02-16T17:54:32Z<p>Others have answered your question nicely. So just a simple point to make...</p>
<p>I'd avoid returning an array (unless you can't). Stick with IEnumerable and then you can use <code>Enumerable.Empty<T>()</code> from the LINQ APIs. Obviously Microsoft have optimised this scenario for you.</p>
<pre><code>IEnumerable<string> GetTheStuff()
{
List<string> s = null;
if (somePredicate())
{
var stuff = new List<string>();
// load data
return stuff;
}
return Enumerable.Empty<string>();
}
</code></pre>