up vote 8 down vote favorite
4
share [g+] share [fb]

When I'm naming array-type variables, I often am confronted with a dilema: Do I name my array plurally or singularly?

For example, let's say I have an array of names: In PHP I would say: $names=array("Alice","Bobby","Charles"); However, then lets say I want to reference a name in this array. For Bobby, I'd say: $names[1]. However, this seams counterintuitive. I'd rather call Bobby $name[1], because Bobby is only one name.

So, you can see a slight discrepancy. Are there conventions for naming arrays?

link|improve this question

51% accept rate
1  
When you call $names[1], you would believe that the variable contains many names and you are referencing one instance of that array. When you think of a variable called $name, you would think it only contains one name. – Ólafur Waage Dec 28 '08 at 3:15
feedback

11 Answers

up vote 28 down vote accepted

I use the plural form. Then I can do something like:

$name = $names[1];
link|improve this answer
That's what I've always leaned towards, but I felt like I may have been very confused. – stalepretzel Dec 28 '08 at 3:24
yup always plural, or mention that its a collection/list in the name – argonide Dec 28 '08 at 4:05
Always plural. Absolutely always. Everything else is highly misleading. – Thorsten79 Dec 28 '08 at 10:06
8  
$sheep = $sheep[1]; doh! – FryGuy Dec 30 '08 at 0:15
feedback

Name should always convey as much information as possible in case a reader is not familiar with the type declaration. An array or collection should therefore be named in the plural.

I personally find $name[1] to be misleading, since it means "the 1st element of name" which doesn't make English sense.

link|improve this answer
feedback

I usually give it something on the end like list so it would be

nameList

Otherwise, I make it plural.

link|improve this answer
feedback

Plural.

sort(name)
sort(names)

Clearly, only plural makes sense here.

And then, here:

name[1]
names[1]

Both would make sense in this context.

Therefore, plural is the only one that makes sense when referencing the whole collection and when referencing one item from the collection.

link|improve this answer
feedback

Plural although the teach you to do it singular in school so you can say:

value[0] = 42;

and really if you think about it that does make more sense than:

values[0] = 42

say it out loud if you don't believe me. Regardless I do use plurals so that I can easily tell when I am scanning through code. That also seems to be the standard that people are using these days.

link|improve this answer
Is that a hitchhiker's reference? haha +1 – alex Feb 27 '09 at 4:50
feedback

Plural for me.

For all the reasons given above and because the agreed conventions where I work (that I contributed to creating) require plurals for arrays / lists / vectors etc.

Although plural naming can cause some anomalies in some cases the majority case is that it provides enhanced clarity and code that is easier to scan read without that annoying feeling of your mind catching on a strange construction and interrupting the flow while you go back to unsnag your brain from whatever tripped it up.

link|improve this answer
feedback

Always plural. That way there isn't any confusion when I do...

for each (string person in people)
{
    //code
}
link|improve this answer
I tend to use $peoples or $childrens. Even though it's not correct english, you can see what it means. That way, I am using a convention that plural is the singular with an 's' appended. Though I am still not sure my convention is the best. – Rimian Jul 1 '10 at 0:18
feedback

What the others said: plural.

It is even more flagrant in PHP:

$name = 'Bobby';
echo $name[1];

will display o. :-)

I must admit I asked myself the same question some years ago, but showing the plural nature of the array or collection was more important than English meaning when accessing one member...

link|improve this answer
feedback

Plural.

I treat arrays like tables in the database, and always name them with the plural.

link|improve this answer
-1 for plural database table names. ick. So all your tables end in "s"???? seems silly to me, and not related. With tables, there are ALWAYS expected to be multiple rows, thus EVERY table would be plural... – TheSoftwareJedi Dec 28 '08 at 3:27
Yep, most do, and I really think it reads better that way. "select * from names" reads (in my head) give me all the names. I can deal with both conventions as long as it is consistent. – csexton Dec 28 '08 at 3:46
feedback

Always plural. Same for lists of any other datatype that can hold more than one element.

link|improve this answer
feedback

I normally use the plural form, or sometimes the same way as cited up here, adding List to the name...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.