in reply to Plural variable naming (or not?)
By consistantly using a system like this throughout your programs, there won't have to be question about whether a scalar contains something like a string, or if it's a reference to an array or hash. As the guide suggests, references would be named in a plural fashion.--- Arrays and hashes should be plural nouns, whether as regular arrays and hashes or array and hash references. Do not name references with ``ref'' or the data type in the name. @stories = (1, 2, 3); # right $comment_ref = [4, 5, 6]; # wrong $comments = [4, 5, 6]; # right $comment = $comments->[0]; # right ---
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Plural variable naming (or not?)
by JadeNB (Chaplain) on Dec 11, 2009 at 00:04 UTC |