When to use Plural vs Collection word on Methods - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T19:38:25Zhttp://stackoverflow.com/feeds/question/396756http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/396756/when-to-use-plural-vs-collection-word-on-methods3When to use Plural vs Collection word on Methodsbalexandre2008-12-28T22:15:27Z2008-12-28T23:14:05Z
<p>I'm creating an API for a module and after I created several methods inside my classes, I asked myself this question.</p>
<p>Right now, and as an example, I'm doing this:</p>
<pre><code>public Company GetMonitoredCompany( String companyName ) { ... }
public List<Company> GetMonitoredCompanies( ) { ... }
</code></pre>
<p>But I realize that for several times that I use other API's / Services sometimes they have <strong>Collection</strong> in the name maybe like:</p>
<pre><code>public List<Company> GetMonitoredCompanyCollection( ) { ... }
</code></pre>
<p>is there a rule for this? a pattern? or either way should be ok?</p>
http://stackoverflow.com/questions/396756/when-to-use-plural-vs-collection-word-on-methods/396763#3967631Answer by starec for When to use Plural vs Collection word on Methodsstarec2008-12-28T22:21:47Z2008-12-28T22:21:47Z<p>It's up to you. But I recommend you to have the same convention for whole project...
I prefer the first way (GetMonitoredCompanies)</p>
http://stackoverflow.com/questions/396756/when-to-use-plural-vs-collection-word-on-methods/396764#3967648Answer by Chris for When to use Plural vs Collection word on MethodsChris2008-12-28T22:21:54Z2008-12-28T22:21:54Z<p>Use the shortest, simplest name that clearly shows the methods purpose.
And be consistent within your project.</p>
<p>In this example, if there are no other considerations, I would use the name:</p>
<blockquote>
<p>GetMonitoredCompanies</p>
</blockquote>
<p>Because it's shorter and clearer.</p>
<p>(I would also return a read-only ICollection or IEnumerable unless you've got some specific reason not to.)</p>
http://stackoverflow.com/questions/396756/when-to-use-plural-vs-collection-word-on-methods/396772#3967720Answer by Mat for When to use Plural vs Collection word on MethodsMat2008-12-28T22:27:23Z2008-12-28T22:27:23Z<p>Never do the Collection thing - unless you feel it adds significant meaning. Modern tools are able to easily tell you at a glance what return type to expect. What happens when you change the return type? You either leave the function name wrong, or have to change it throughout your code (albeit you may need to do that anyway, but if you subclass, etc. you may not need to otherwise).</p>
<p>For the same reason as hungarian notation is (controversially) no longer particularly useful in high-level languages.</p>
<p>In all cases, be consistent across your code.</p>
<p>Oh, and don't be stupid. I had a colleague (in a moment of annoyance I think) call his functions along the lines of <em>FunctionThatLoadsTheTotalFromFileNumberCount</em> in an attempt to convey the function return type (<em>Number</em>), meaning (<em>Count</em>), that it was a function (<em>Function</em>) and what it did actually did, rather verbosely.</p>
http://stackoverflow.com/questions/396756/when-to-use-plural-vs-collection-word-on-methods/396776#3967760Answer by Wilka for When to use Plural vs Collection word on MethodsWilka2008-12-28T22:29:17Z2008-12-28T22:29:17Z<p>For this case, I would copy the .NET Framework naming. E.g. <a href="http://msdn.microsoft.com/en-us/library/07wt70x2.aspx" rel="nofollow">Directory.GetFiles</a> and <a href="http://msdn.microsoft.com/en-us/library/k2w5ey1e.aspx" rel="nofollow">Type.GetMembers</a> and go with the plural. Unless doing so makes the code unclear, obviously. </p>
http://stackoverflow.com/questions/396756/when-to-use-plural-vs-collection-word-on-methods/396785#3967851Answer by OrbMan for When to use Plural vs Collection word on MethodsOrbMan2008-12-28T22:37:11Z2008-12-28T22:37:11Z<p>If it can possibly return multiple values (collection, array, etc), use a plural (GetMonitoredCompanies), else use a singular. Do not include the returned data type in the name. This is just asking for trouble where you change the return data type and forget to rename the method, sowing mad confusion.</p>
http://stackoverflow.com/questions/396756/when-to-use-plural-vs-collection-word-on-methods/396837#3968370Answer by Alex for When to use Plural vs Collection word on MethodsAlex2008-12-28T23:14:05Z2008-12-28T23:14:05Z<p>I find it very confusing when only using a plural to distinguish a collection. I normally use List instead of Get when returning collections so the example would be</p>
<pre><code>ListMonitoredCompanies
</code></pre>
<p>This makes it very easy to use intellisense as the add, update, delete, list and get functions all have their own starting letter.</p>