Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: About the use of the plural form for the name of variables (only vars)

by tye (Sage)
on Nov 08, 2012 at 14:46 UTC ( [id://1002917]=note: print w/replies, xml ) Need Help??


in reply to About the use of the plural form for the name of variables

My main objection to the use of plurals almost anywhere in software, is that it usually leads to wasted time having to look up whether the plural or singular was used this time (because it is easy to remember the name but very easy to forget whether the name was plural or not). But variables usually have very limited scope, so that means that this problem doesn't apply for most variables.

And I am at least somewhat reluctant to give two different variables the same name in overlapping scopes, so writing for my $friend ( @friend ) gives me pause. I've certainly done it from time to time. But I've also often enough regretted it. It is a pain to not be able to, for example, rename one of the variables without having your search also stop on all the uses of the other variable (say when you change from an array to a hash).

I also find it more reasonable to reconcile $fiends[1] over @friend, since the "one of" modifier (like [1]) get placed right there next to the pluralizing letter(s). :)

- tye        

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1002917]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-25 05:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found