Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Plural variable naming (or not?)

by beppu (Hermit)
on Mar 20, 2002 at 02:55 UTC ( [id://152905]=note: print w/replies, xml ) Need Help??


in reply to Plural variable naming (or not?)

Am I the only one who uses the singular form for arrays?

Replies are listed 'Best First'.
Re: Re: Plural variable naming (or not?)
by nefertari (Chaplain) on Mar 20, 2002 at 09:51 UTC
    No, you aren't: Some names (i often name variables in german, or mix the languages, this i should change!):
    @mathsylist : a name for a list in that i store the recent mathsymbols.
    %preprintliste : the matching preprints, stored as a hash, in order to avoid trouble with doubleentries in two files.
    @sortierteschluessel: this is plural (sorted keys) for exactly that.
    It seems that i either use plural or something like list in the end.

      Interesting... I'd have thought that @plural would be more intuitive than @singular_list. Obviously, your mileage varies.

      The one place I can see where this would be a distinct advantage is when you're using Perl arrays as different data types. For instance:

      my @foo_list; my @bar_stack; my @baz_queue; my @xyzzy_heap;

      If these were just plurals, it would be impossible to tell just from the names which one was a stack, or a queue, or whatever -- which could be a very bad thing.

      --
      :wq

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-19 22:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found