Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Re: Perl Naming Conventions

by Aragorn (Curate)
on Apr 28, 2003 at 20:22 UTC ( [id://253825]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl Naming Conventions
in thread Perl Naming Conventions

There isn't an official style document but perlstyle offers some advice on naming conventions, and there are some other conventions:
  • Module names are MixedCaseNoUnderscores
  • Constants are UPPERCASE_WITH_UNDERSCORES
  • Package wide variables are Mixed_Case_With_Underscores
  • Function variables are lowercase_with_underscores
Also, function and method names are also lowercase_with_underscore

This isn't complete or in any way authoritive, but in my opinion it's a good start. Take a look at the modules which are in the Perl distribution. They mostly follow the conventions listed above.

TVSET makes some good comments about the readability of your code.

If your code is readable, and you're consistent in whatever naming convention you use, you'll have maintainable code. If you're planning on putting modules on CPAN, then examine some of the more well-known modules (like DBI and LWP) to see what the naming conventions are.

Arjen

Log In?
Username:
Password:

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

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

    No recent polls found