This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Finalize perldelta for 5.33.5
[perl5.git] / pod / perlstyle.pod
... / ...
CommitLineData
1=head1 NAME
2
3perlstyle - Perl style guide
4
5=head1 DESCRIPTION
6
7Each programmer will, of course, have his or her own preferences in
8regards to formatting, but there are some general guidelines that will
9make your programs easier to read, understand, and maintain.
10
11The most important thing is to use L<strict> and L<warnings> in all your
12code or know the reason why not to. You may turn them off explicitly for
13particular portions of code via C<no warnings> or C<no strict>, and this
14can be limited to the specific warnings or strict features you wish to
15disable. The B<-w> flag and C<$^W> variable should not be used for this
16purpose since they can affect code you use but did not write, such as
17modules from core or CPAN.
18
19Regarding aesthetics of code lay out, about the only thing Larry
20cares strongly about is that the closing curly bracket of
21a multi-line BLOCK should line up with the keyword that started the construct.
22Beyond that, he has other preferences that aren't so strong:
23
24=over 4
25
26=item *
27
284-column indent.
29
30=item *
31
32Opening curly on same line as keyword, if possible, otherwise line up.
33
34=item *
35
36Space before the opening curly of a multi-line BLOCK.
37
38=item *
39
40One-line BLOCK may be put on one line, including curlies.
41
42=item *
43
44No space before the semicolon.
45
46=item *
47
48Semicolon omitted in "short" one-line BLOCK.
49
50=item *
51
52Space around most operators.
53
54=item *
55
56Space around a "complex" subscript (inside brackets).
57
58=item *
59
60Blank lines between chunks that do different things.
61
62=item *
63
64Uncuddled elses.
65
66=item *
67
68No space between function name and its opening parenthesis.
69
70=item *
71
72Space after each comma.
73
74=item *
75
76Long lines broken after an operator (except C<and> and C<or>).
77
78=item *
79
80Space after last parenthesis matching on current line.
81
82=item *
83
84Line up corresponding items vertically.
85
86=item *
87
88Omit redundant punctuation as long as clarity doesn't suffer.
89
90=back
91
92Larry has his reasons for each of these things, but he doesn't claim that
93everyone else's mind works the same as his does.
94
95Here are some other more substantive style issues to think about:
96
97=over 4
98
99=item *
100
101Just because you I<CAN> do something a particular way doesn't mean that
102you I<SHOULD> do it that way. Perl is designed to give you several
103ways to do anything, so consider picking the most readable one. For
104instance
105
106 open(my $fh, '<', $foo) || die "Can't open $foo: $!";
107
108is better than
109
110 die "Can't open $foo: $!" unless open(my $fh, '<', $foo);
111
112because the second way hides the main point of the statement in a
113modifier. On the other hand
114
115 print "Starting analysis\n" if $verbose;
116
117is better than
118
119 $verbose && print "Starting analysis\n";
120
121because the main point isn't whether the user typed B<-v> or not.
122
123Similarly, just because an operator lets you assume default arguments
124doesn't mean that you have to make use of the defaults. The defaults
125are there for lazy systems programmers writing one-shot programs. If
126you want your program to be readable, consider supplying the argument.
127
128Along the same lines, just because you I<CAN> omit parentheses in many
129places doesn't mean that you ought to:
130
131 return print reverse sort num values %array;
132 return print(reverse(sort num (values(%array))));
133
134When in doubt, parenthesize. At the very least it will let some poor
135schmuck bounce on the % key in B<vi>.
136
137Even if you aren't in doubt, consider the mental welfare of the person
138who has to maintain the code after you, and who will probably put
139parentheses in the wrong place.
140
141=item *
142
143Don't go through silly contortions to exit a loop at the top or the
144bottom, when Perl provides the C<last> operator so you can exit in
145the middle. Just "outdent" it a little to make it more visible:
146
147 LINE:
148 for (;;) {
149 statements;
150 last LINE if $foo;
151 next LINE if /^#/;
152 statements;
153 }
154
155=item *
156
157Don't be afraid to use loop labels--they're there to enhance
158readability as well as to allow multilevel loop breaks. See the
159previous example.
160
161=item *
162
163Avoid using C<grep()> (or C<map()>) or `backticks` in a void context, that is,
164when you just throw away their return values. Those functions all
165have return values, so use them. Otherwise use a C<foreach()> loop or
166the C<system()> function instead.
167
168=item *
169
170For portability, when using features that may not be implemented on
171every machine, test the construct in an eval to see if it fails. If
172you know what version or patchlevel a particular feature was
173implemented, you can test C<$]> (C<$PERL_VERSION> in C<English>) to see if it
174will be there. The C<Config> module will also let you interrogate values
175determined by the B<Configure> program when Perl was installed.
176
177=item *
178
179Choose mnemonic identifiers. If you can't remember what mnemonic means,
180you've got a problem.
181
182=item *
183
184While short identifiers like C<$gotit> are probably ok, use underscores to
185separate words in longer identifiers. It is generally easier to read
186C<$var_names_like_this> than C<$VarNamesLikeThis>, especially for
187non-native speakers of English. It's also a simple rule that works
188consistently with C<VAR_NAMES_LIKE_THIS>.
189
190Package names are sometimes an exception to this rule. Perl informally
191reserves lowercase module names for "pragma" modules like C<integer> and
192C<strict>. Other modules should begin with a capital letter and use mixed
193case, but probably without underscores due to limitations in primitive
194file systems' representations of module names as files that must fit into a
195few sparse bytes.
196
197=item *
198
199You may find it helpful to use letter case to indicate the scope
200or nature of a variable. For example:
201
202 $ALL_CAPS_HERE constants only (beware clashes with perl vars!)
203 $Some_Caps_Here package-wide global/static
204 $no_caps_here function scope my() or local() variables
205
206Function and method names seem to work best as all lowercase.
207E.g., C<$obj-E<gt>as_string()>.
208
209You can use a leading underscore to indicate that a variable or
210function should not be used outside the package that defined it.
211
212=item *
213
214If you have a really hairy regular expression, use the C</x> or C</xx>
215modifiers and put in some whitespace to make it look a little less like
216line noise.
217Don't use slash as a delimiter when your regexp has slashes or backslashes.
218
219=item *
220
221Use the new C<and> and C<or> operators to avoid having to parenthesize
222list operators so much, and to reduce the incidence of punctuation
223operators like C<&&> and C<||>. Call your subroutines as if they were
224functions or list operators to avoid excessive ampersands and parentheses.
225
226=item *
227
228Use here documents instead of repeated C<print()> statements.
229
230=item *
231
232Line up corresponding things vertically, especially if it'd be too long
233to fit on one line anyway.
234
235 $IDX = $ST_MTIME;
236 $IDX = $ST_ATIME if $opt_u;
237 $IDX = $ST_CTIME if $opt_c;
238 $IDX = $ST_SIZE if $opt_s;
239
240 mkdir $tmpdir, 0700 or die "can't mkdir $tmpdir: $!";
241 chdir($tmpdir) or die "can't chdir $tmpdir: $!";
242 mkdir 'tmp', 0777 or die "can't mkdir $tmpdir/tmp: $!";
243
244=item *
245
246Always check the return codes of system calls. Good error messages should
247go to C<STDERR>, include which program caused the problem, what the failed
248system call and arguments were, and (VERY IMPORTANT) should contain the
249standard system error message for what went wrong. Here's a simple but
250sufficient example:
251
252 opendir(my $dh, $dir) or die "can't opendir $dir: $!";
253
254=item *
255
256Line up your transliterations when it makes sense:
257
258 tr [abc]
259 [xyz];
260
261=item *
262
263Think about reusability. Why waste brainpower on a one-shot when you
264might want to do something like it again? Consider generalizing your
265code. Consider writing a module or object class. Consider making your
266code run cleanly with C<use strict> and C<use warnings> in
267effect. Consider giving away your code. Consider changing your whole
268world view. Consider... oh, never mind.
269
270=item *
271
272Try to document your code and use Pod formatting in a consistent way. Here
273are commonly expected conventions:
274
275=over 4
276
277=item *
278
279use C<CE<lt>E<gt>> for function, variable and module names (and more
280generally anything that can be considered part of code, like filehandles
281or specific values). Note that function names are considered more readable
282with parentheses after their name, that is C<function()>.
283
284=item *
285
286use C<BE<lt>E<gt>> for commands names like B<cat> or B<grep>.
287
288=item *
289
290use C<FE<lt>E<gt>> or C<CE<lt>E<gt>> for file names. C<FE<lt>E<gt>> should
291be the only Pod code for file names, but as most Pod formatters render it
292as italic, Unix and Windows paths with their slashes and backslashes may
293be less readable, and better rendered with C<CE<lt>E<gt>>.
294
295=back
296
297=item *
298
299Be consistent.
300
301=item *
302
303Be nice.
304
305=back