This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
typo in pod/perlfunc.pod
[perl5.git] / pod / perlfaq7.pod
CommitLineData
68dc0745 1=head1 NAME
2
5cd0b561 3perlfaq7 - General Perl Language Issues ($Revision: 1.14 $, $Date: 2003/01/31 17:38:14 $)
68dc0745 4
5=head1 DESCRIPTION
6
7This section deals with general Perl language issues that don't
8clearly fit into any of the other sections.
9
10=head2 Can I get a BNF/yacc/RE for the Perl language?
11
c8db1d39
TC
12There is no BNF, but you can paw your way through the yacc grammar in
13perly.y in the source distribution if you're particularly brave. The
14grammar relies on very smart tokenizing code, so be prepared to
15venture into toke.c as well.
16
17In the words of Chaim Frenkel: "Perl's grammar can not be reduced to BNF.
18The work of parsing perl is distributed between yacc, the lexer, smoke
19and mirrors."
68dc0745 20
d92eb7b0 21=head2 What are all these $@%&* punctuation signs, and how do I know when to use them?
68dc0745 22
23They are type specifiers, as detailed in L<perldata>:
24
25 $ for scalar values (number, string or reference)
26 @ for arrays
27 % for hashes (associative arrays)
d92eb7b0 28 & for subroutines (aka functions, procedures, methods)
68dc0745 29 * for all types of that symbol name. In version 4 you used them like
30 pointers, but in modern perls you can just use references.
31
a6dd486b
JB
32There are couple of other symbols that you're likely to encounter that aren't
33really type specifiers:
68dc0745 34
35 <> are used for inputting a record from a filehandle.
36 \ takes a reference to something.
37
c47ff5f1
GS
38Note that <FILE> is I<neither> the type specifier for files
39nor the name of the handle. It is the C<< <> >> operator applied
a6dd486b 40to the handle FILE. It reads one line (well, record--see
197aec24 41L<perlvar/$E<sol>>) from the handle FILE in scalar context, or I<all> lines
68dc0745 42in list context. When performing open, close, or any other operation
a6dd486b 43besides C<< <> >> on files, or even when talking about the handle, do
68dc0745 44I<not> use the brackets. These are correct: C<eof(FH)>, C<seek(FH, 0,
452)> and "copying from STDIN to FILE".
46
47=head2 Do I always/never have to quote my strings or use semicolons and commas?
48
49Normally, a bareword doesn't need to be quoted, but in most cases
50probably should be (and must be under C<use strict>). But a hash key
51consisting of a simple word (that isn't the name of a defined
c47ff5f1 52subroutine) and the left-hand operand to the C<< => >> operator both
68dc0745 53count as though they were quoted:
54
55 This is like this
56 ------------ ---------------
57 $foo{line} $foo{"line"}
58 bar => stuff "bar" => stuff
59
60The final semicolon in a block is optional, as is the final comma in a
61list. Good style (see L<perlstyle>) says to put them in except for
62one-liners:
63
64 if ($whoops) { exit 1 }
65 @nums = (1, 2, 3);
66
67 if ($whoops) {
68 exit 1;
69 }
70 @lines = (
71 "There Beren came from mountains cold",
72 "And lost he wandered under leaves",
73 );
74
75=head2 How do I skip some return values?
76
77One way is to treat the return values as a list and index into it:
78
79 $dir = (getpwnam($user))[7];
80
81Another way is to use undef as an element on the left-hand-side:
82
83 ($dev, $ino, undef, undef, $uid, $gid) = stat($file);
197aec24 84
49d635f9
RGS
85You can also use a list slice to select only the elements that
86you need:
87
88 ($dev, $ino, $uid, $gid) = ( stat($file) )[0,1,4,5];
68dc0745 89
90=head2 How do I temporarily block warnings?
91
9f1b1f2d
GS
92If you are running Perl 5.6.0 or better, the C<use warnings> pragma
93allows fine control of what warning are produced.
94See L<perllexwarn> for more details.
95
96 {
97 no warnings; # temporarily turn off warnings
98 $a = $b + $c; # I know these might be undef
99 }
100
101If you have an older version of Perl, the C<$^W> variable (documented
102in L<perlvar>) controls runtime warnings for a block:
68dc0745 103
104 {
105 local $^W = 0; # temporarily turn off warnings
106 $a = $b + $c; # I know these might be undef
107 }
108
109Note that like all the punctuation variables, you cannot currently
110use my() on C<$^W>, only local().
111
68dc0745 112=head2 What's an extension?
113
a6dd486b
JB
114An extension is a way of calling compiled C code from Perl. Reading
115L<perlxstut> is a good place to learn more about extensions.
68dc0745 116
117=head2 Why do Perl operators have different precedence than C operators?
118
119Actually, they don't. All C operators that Perl copies have the same
120precedence in Perl as they do in C. The problem is with operators that C
121doesn't have, especially functions that give a list context to everything
a6dd486b 122on their right, eg. print, chmod, exec, and so on. Such functions are
68dc0745 123called "list operators" and appear as such in the precedence table in
124L<perlop>.
125
126A common mistake is to write:
127
128 unlink $file || die "snafu";
129
130This gets interpreted as:
131
132 unlink ($file || die "snafu");
133
134To avoid this problem, either put in extra parentheses or use the
135super low precedence C<or> operator:
136
137 (unlink $file) || die "snafu";
138 unlink $file or die "snafu";
139
140The "English" operators (C<and>, C<or>, C<xor>, and C<not>)
141deliberately have precedence lower than that of list operators for
142just such situations as the one above.
143
144Another operator with surprising precedence is exponentiation. It
145binds more tightly even than unary minus, making C<-2**2> product a
146negative not a positive four. It is also right-associating, meaning
147that C<2**3**2> is two raised to the ninth power, not eight squared.
148
c8db1d39
TC
149Although it has the same precedence as in C, Perl's C<?:> operator
150produces an lvalue. This assigns $x to either $a or $b, depending
151on the trueness of $maybe:
152
153 ($maybe ? $a : $b) = $x;
154
68dc0745 155=head2 How do I declare/create a structure?
156
157In general, you don't "declare" a structure. Just use a (probably
158anonymous) hash reference. See L<perlref> and L<perldsc> for details.
159Here's an example:
160
161 $person = {}; # new anonymous hash
162 $person->{AGE} = 24; # set field AGE to 24
163 $person->{NAME} = "Nat"; # set field NAME to "Nat"
164
165If you're looking for something a bit more rigorous, try L<perltoot>.
166
167=head2 How do I create a module?
168
169A module is a package that lives in a file of the same name. For
170example, the Hello::There module would live in Hello/There.pm. For
171details, read L<perlmod>. You'll also find L<Exporter> helpful. If
172you're writing a C or mixed-language module with both C and Perl, then
173you should study L<perlxstut>.
174
6761e064 175The C<h2xs> program will create stubs for all the important stuff for you:
65acb1b1
TC
176
177 % h2xs -XA -n My::Module
7207e29d 178
6761e064
JH
179The C<-X> switch tells C<h2xs> that you are not using C<XS> extension
180code. The C<-A> switch tells C<h2xs> that you are not using the
181AutoLoader, and the C<-n> switch specifies the name of the module.
182See L<h2xs> for more details.
65acb1b1 183
68dc0745 184=head2 How do I create a class?
185
186See L<perltoot> for an introduction to classes and objects, as well as
187L<perlobj> and L<perlbot>.
188
189=head2 How can I tell if a variable is tainted?
190
213329dd
JH
191You can use the tainted() function of the Scalar::Util module, available
192from CPAN (or included with Perl since release 5.8.0).
193See also L<perlsec/"Laundering and Detecting Tainted Data">.
68dc0745 194
195=head2 What's a closure?
196
197Closures are documented in L<perlref>.
198
199I<Closure> is a computer science term with a precise but
200hard-to-explain meaning. Closures are implemented in Perl as anonymous
201subroutines with lasting references to lexical variables outside their
202own scopes. These lexicals magically refer to the variables that were
203around when the subroutine was defined (deep binding).
204
205Closures make sense in any programming language where you can have the
206return value of a function be itself a function, as you can in Perl.
207Note that some languages provide anonymous functions but are not
a6dd486b 208capable of providing proper closures: the Python language, for
68dc0745 209example. For more information on closures, check out any textbook on
210functional programming. Scheme is a language that not only supports
211but encourages closures.
212
213Here's a classic function-generating function:
214
215 sub add_function_generator {
216 return sub { shift + shift };
217 }
218
219 $add_sub = add_function_generator();
c8db1d39 220 $sum = $add_sub->(4,5); # $sum is 9 now.
68dc0745 221
222The closure works as a I<function template> with some customization
223slots left out to be filled later. The anonymous subroutine returned
224by add_function_generator() isn't technically a closure because it
225refers to no lexicals outside its own scope.
226
227Contrast this with the following make_adder() function, in which the
228returned anonymous function contains a reference to a lexical variable
229outside the scope of that function itself. Such a reference requires
230that Perl return a proper closure, thus locking in for all time the
231value that the lexical had when the function was created.
232
233 sub make_adder {
234 my $addpiece = shift;
235 return sub { shift + $addpiece };
236 }
237
238 $f1 = make_adder(20);
239 $f2 = make_adder(555);
240
241Now C<&$f1($n)> is always 20 plus whatever $n you pass in, whereas
242C<&$f2($n)> is always 555 plus whatever $n you pass in. The $addpiece
243in the closure sticks around.
244
245Closures are often used for less esoteric purposes. For example, when
246you want to pass in a bit of code into a function:
247
248 my $line;
249 timeout( 30, sub { $line = <STDIN> } );
250
c47ff5f1
GS
251If the code to execute had been passed in as a string,
252C<< '$line = <STDIN>' >>, there would have been no way for the
253hypothetical timeout() function to access the lexical variable
254$line back in its caller's scope.
68dc0745 255
46fc3d4c 256=head2 What is variable suicide and how can I prevent it?
257
258Variable suicide is when you (temporarily or permanently) lose the
259value of a variable. It is caused by scoping through my() and local()
368c9434 260interacting with either closures or aliased foreach() iterator
46fc3d4c 261variables and subroutine arguments. It used to be easy to
262inadvertently lose a variable's value this way, but now it's much
263harder. Take this code:
264
265 my $f = "foo";
266 sub T {
267 while ($i++ < 3) { my $f = $f; $f .= "bar"; print $f, "\n" }
268 }
269 T;
270 print "Finally $f\n";
271
272The $f that has "bar" added to it three times should be a new C<$f>
d92eb7b0
GS
273(C<my $f> should create a new local variable each time through the loop).
274It isn't, however. This was a bug, now fixed in the latest releases
275(tested against 5.004_05, 5.005_03, and 5.005_56).
46fc3d4c 276
d92eb7b0 277=head2 How can I pass/return a {Function, FileHandle, Array, Hash, Method, Regex}?
68dc0745 278
d92eb7b0 279With the exception of regexes, you need to pass references to these
68dc0745 280objects. See L<perlsub/"Pass by Reference"> for this particular
281question, and L<perlref> for information on references.
282
a6dd486b
JB
283See ``Passing Regexes'', below, for information on passing regular
284expressions.
285
68dc0745 286=over 4
287
288=item Passing Variables and Functions
289
a6dd486b 290Regular variables and functions are quite easy to pass: just pass in a
68dc0745 291reference to an existing or anonymous variable or function:
292
293 func( \$some_scalar );
294
65acb1b1 295 func( \@some_array );
68dc0745 296 func( [ 1 .. 10 ] );
297
298 func( \%some_hash );
299 func( { this => 10, that => 20 } );
300
301 func( \&some_func );
302 func( sub { $_[0] ** $_[1] } );
303
304=item Passing Filehandles
305
49d635f9
RGS
306As of Perl 5.6, you can represent filehandles with scalar variables
307which you treat as any other scalar.
308
309 open my $fh, $filename or die "Cannot open $filename! $!";
310 func( $fh );
197aec24 311
49d635f9
RGS
312 sub func {
313 my $passed_fh = shift;
197aec24 314
49d635f9
RGS
315 my $line = <$fh>;
316 }
197aec24 317
49d635f9 318Before Perl 5.6, you had to use the C<*FH> or C<\*FH> notations.
a6dd486b 319These are "typeglobs"--see L<perldata/"Typeglobs and Filehandles">
c8db1d39
TC
320and especially L<perlsub/"Pass by Reference"> for more information.
321
d92eb7b0
GS
322=item Passing Regexes
323
324To pass regexes around, you'll need to be using a release of Perl
325sufficiently recent as to support the C<qr//> construct, pass around
326strings and use an exception-trapping eval, or else be very, very clever.
68dc0745 327
d92eb7b0
GS
328Here's an example of how to pass in a string to be regex compared
329using C<qr//>:
68dc0745 330
331 sub compare($$) {
d92eb7b0
GS
332 my ($val1, $regex) = @_;
333 my $retval = $val1 =~ /$regex/;
334 return $retval;
335 }
336 $match = compare("old McDonald", qr/d.*D/i);
337
338Notice how C<qr//> allows flags at the end. That pattern was compiled
339at compile time, although it was executed later. The nifty C<qr//>
340notation wasn't introduced until the 5.005 release. Before that, you
341had to approach this problem much less intuitively. For example, here
342it is again if you don't have C<qr//>:
343
344 sub compare($$) {
345 my ($val1, $regex) = @_;
346 my $retval = eval { $val1 =~ /$regex/ };
68dc0745 347 die if $@;
348 return $retval;
349 }
350
d92eb7b0 351 $match = compare("old McDonald", q/($?i)d.*D/);
68dc0745 352
353Make sure you never say something like this:
354
d92eb7b0 355 return eval "\$val =~ /$regex/"; # WRONG
68dc0745 356
d92eb7b0 357or someone can sneak shell escapes into the regex due to the double
68dc0745 358interpolation of the eval and the double-quoted string. For example:
359
360 $pattern_of_evil = 'danger ${ system("rm -rf * &") } danger';
361
362 eval "\$string =~ /$pattern_of_evil/";
363
364Those preferring to be very, very clever might see the O'Reilly book,
365I<Mastering Regular Expressions>, by Jeffrey Friedl. Page 273's
366Build_MatchMany_Function() is particularly interesting. A complete
367citation of this book is given in L<perlfaq2>.
368
369=item Passing Methods
370
371To pass an object method into a subroutine, you can do this:
372
373 call_a_lot(10, $some_obj, "methname")
374 sub call_a_lot {
375 my ($count, $widget, $trick) = @_;
376 for (my $i = 0; $i < $count; $i++) {
377 $widget->$trick();
378 }
379 }
380
a6dd486b
JB
381Or, you can use a closure to bundle up the object, its
382method call, and arguments:
68dc0745 383
384 my $whatnot = sub { $some_obj->obfuscate(@args) };
385 func($whatnot);
386 sub func {
387 my $code = shift;
388 &$code();
389 }
390
391You could also investigate the can() method in the UNIVERSAL class
392(part of the standard perl distribution).
393
394=back
395
396=head2 How do I create a static variable?
397
398As with most things in Perl, TMTOWTDI. What is a "static variable" in
399other languages could be either a function-private variable (visible
400only within a single function, retaining its value between calls to
401that function), or a file-private variable (visible only to functions
402within the file it was declared in) in Perl.
403
404Here's code to implement a function-private variable:
405
406 BEGIN {
407 my $counter = 42;
408 sub prev_counter { return --$counter }
409 sub next_counter { return $counter++ }
410 }
411
412Now prev_counter() and next_counter() share a private variable $counter
413that was initialized at compile time.
414
415To declare a file-private variable, you'll still use a my(), putting
a6dd486b
JB
416the declaration at the outer scope level at the top of the file.
417Assume this is in file Pax.pm:
68dc0745 418
419 package Pax;
420 my $started = scalar(localtime(time()));
421
422 sub begun { return $started }
423
424When C<use Pax> or C<require Pax> loads this module, the variable will
425be initialized. It won't get garbage-collected the way most variables
426going out of scope do, because the begun() function cares about it,
427but no one else can get it. It is not called $Pax::started because
428its scope is unrelated to the package. It's scoped to the file. You
429could conceivably have several packages in that same file all
430accessing the same private variable, but another file with the same
431package couldn't get to it.
432
c2611fb3 433See L<perlsub/"Persistent Private Variables"> for details.
c8db1d39 434
68dc0745 435=head2 What's the difference between dynamic and lexical (static) scoping? Between local() and my()?
436
a6dd486b
JB
437C<local($x)> saves away the old value of the global variable C<$x>
438and assigns a new value for the duration of the subroutine I<which is
68dc0745 439visible in other functions called from that subroutine>. This is done
440at run-time, so is called dynamic scoping. local() always affects global
441variables, also called package variables or dynamic variables.
442
443C<my($x)> creates a new variable that is only visible in the current
a6dd486b 444subroutine. This is done at compile-time, so it is called lexical or
68dc0745 445static scoping. my() always affects private variables, also called
446lexical variables or (improperly) static(ly scoped) variables.
447
448For instance:
449
450 sub visible {
451 print "var has value $var\n";
452 }
453
454 sub dynamic {
455 local $var = 'local'; # new temporary value for the still-global
456 visible(); # variable called $var
457 }
458
459 sub lexical {
460 my $var = 'private'; # new private variable, $var
461 visible(); # (invisible outside of sub scope)
462 }
463
464 $var = 'global';
465
466 visible(); # prints global
467 dynamic(); # prints local
468 lexical(); # prints global
469
470Notice how at no point does the value "private" get printed. That's
471because $var only has that value within the block of the lexical()
472function, and it is hidden from called subroutine.
473
474In summary, local() doesn't make what you think of as private, local
475variables. It gives a global variable a temporary value. my() is
476what you're looking for if you want private variables.
477
197aec24 478See L<perlsub/"Private Variables via my()"> and
13a2d996 479L<perlsub/"Temporary Values via local()"> for excruciating details.
68dc0745 480
481=head2 How can I access a dynamic variable while a similarly named lexical is in scope?
482
49d635f9
RGS
483If you know your package, you can just mention it explicitly, as in
484$Some_Pack::var. Note that the notation $::var is B<not> the dynamic $var
485in the current package, but rather the one in the "main" package, as
486though you had written $main::var.
487
488 use vars '$var';
489 local $var = "global";
490 my $var = "lexical";
68dc0745 491
49d635f9
RGS
492 print "lexical is $var\n";
493 print "global is $main::var\n";
68dc0745 494
49d635f9
RGS
495Alternatively you can use the compiler directive our() to bring a
496dynamic variable into the current lexical scope.
68dc0745 497
49d635f9
RGS
498 require 5.006; # our() did not exist before 5.6
499 use vars '$var';
68dc0745 500
49d635f9
RGS
501 local $var = "global";
502 my $var = "lexical";
503
504 print "lexical is $var\n";
505
506 {
507 our $var;
508 print "global is $var\n";
509 }
68dc0745 510
511=head2 What's the difference between deep and shallow binding?
512
513In deep binding, lexical variables mentioned in anonymous subroutines
514are the same ones that were in scope when the subroutine was created.
515In shallow binding, they are whichever variables with the same names
516happen to be in scope when the subroutine is called. Perl always uses
517deep binding of lexical variables (i.e., those created with my()).
518However, dynamic variables (aka global, local, or package variables)
519are effectively shallowly bound. Consider this just one more reason
520not to use them. See the answer to L<"What's a closure?">.
521
04d666b1 522=head2 Why doesn't "my($foo) = E<lt>FILEE<gt>;" work right?
68dc0745 523
c8db1d39 524C<my()> and C<local()> give list context to the right hand side
c47ff5f1 525of C<=>. The <FH> read operation, like so many of Perl's
c8db1d39
TC
526functions and operators, can tell which context it was called in and
527behaves appropriately. In general, the scalar() function can help.
528This function does nothing to the data itself (contrary to popular myth)
529but rather tells its argument to behave in whatever its scalar fashion is.
530If that function doesn't have a defined scalar behavior, this of course
531doesn't help you (such as with sort()).
68dc0745 532
533To enforce scalar context in this particular case, however, you need
534merely omit the parentheses:
535
536 local($foo) = <FILE>; # WRONG
537 local($foo) = scalar(<FILE>); # ok
538 local $foo = <FILE>; # right
539
540You should probably be using lexical variables anyway, although the
541issue is the same here:
542
543 my($foo) = <FILE>; # WRONG
544 my $foo = <FILE>; # right
545
54310121 546=head2 How do I redefine a builtin function, operator, or method?
68dc0745 547
548Why do you want to do that? :-)
549
550If you want to override a predefined function, such as open(),
551then you'll have to import the new definition from a different
4a4eefd0 552module. See L<perlsub/"Overriding Built-in Functions">. There's
65acb1b1 553also an example in L<perltoot/"Class::Template">.
68dc0745 554
555If you want to overload a Perl operator, such as C<+> or C<**>,
556then you'll want to use the C<use overload> pragma, documented
557in L<overload>.
558
559If you're talking about obscuring method calls in parent classes,
560see L<perltoot/"Overridden Methods">.
561
562=head2 What's the difference between calling a function as &foo and foo()?
563
564When you call a function as C<&foo>, you allow that function access to
a6dd486b
JB
565your current @_ values, and you bypass prototypes.
566The function doesn't get an empty @_--it gets yours! While not
68dc0745 567strictly speaking a bug (it's documented that way in L<perlsub>), it
568would be hard to consider this a feature in most cases.
569
c8db1d39 570When you call your function as C<&foo()>, then you I<do> get a new @_,
68dc0745 571but prototyping is still circumvented.
572
573Normally, you want to call a function using C<foo()>. You may only
574omit the parentheses if the function is already known to the compiler
575because it already saw the definition (C<use> but not C<require>),
576or via a forward reference or C<use subs> declaration. Even in this
577case, you get a clean @_ without any of the old values leaking through
578where they don't belong.
579
580=head2 How do I create a switch or case statement?
581
582This is explained in more depth in the L<perlsyn>. Briefly, there's
583no official case statement, because of the variety of tests possible
584in Perl (numeric comparison, string comparison, glob comparison,
83df6a1d
JH
585regex matching, overloaded comparisons, ...).
586Larry couldn't decide how best to do this, so he left it out, even
587though it's been on the wish list since perl1.
68dc0745 588
83df6a1d
JH
589Starting from Perl 5.8 to get switch and case one can use the
590Switch extension and say:
591
592 use Switch;
593
594after which one has switch and case. It is not as fast as it could be
595because it's not really part of the language (it's done using source
596filters) but it is available, and it's very flexible.
597
598But if one wants to use pure Perl, the general answer is to write a
599construct like this:
c8db1d39
TC
600
601 for ($variable_to_test) {
602 if (/pat1/) { } # do something
603 elsif (/pat2/) { } # do something else
604 elsif (/pat3/) { } # do something else
605 else { } # default
197aec24 606 }
68dc0745 607
c8db1d39
TC
608Here's a simple example of a switch based on pattern matching, this
609time lined up in a way to make it look more like a switch statement.
8305e449 610We'll do a multiway conditional based on the type of reference stored
c8db1d39
TC
611in $whatchamacallit:
612
613 SWITCH: for (ref $whatchamacallit) {
68dc0745 614
615 /^$/ && die "not a reference";
616
617 /SCALAR/ && do {
618 print_scalar($$ref);
619 last SWITCH;
620 };
621
622 /ARRAY/ && do {
623 print_array(@$ref);
624 last SWITCH;
625 };
626
627 /HASH/ && do {
628 print_hash(%$ref);
629 last SWITCH;
630 };
631
632 /CODE/ && do {
633 warn "can't print function ref";
634 last SWITCH;
635 };
636
637 # DEFAULT
638
639 warn "User defined type skipped";
640
641 }
642
197aec24 643See C<perlsyn/"Basic BLOCKs and Switch Statements"> for many other
c8db1d39
TC
644examples in this style.
645
646Sometimes you should change the positions of the constant and the variable.
647For example, let's say you wanted to test which of many answers you were
648given, but in a case-insensitive way that also allows abbreviations.
649You can use the following technique if the strings all start with
a6dd486b 650different characters or if you want to arrange the matches so that
c8db1d39
TC
651one takes precedence over another, as C<"SEND"> has precedence over
652C<"STOP"> here:
653
654 chomp($answer = <>);
655 if ("SEND" =~ /^\Q$answer/i) { print "Action is send\n" }
656 elsif ("STOP" =~ /^\Q$answer/i) { print "Action is stop\n" }
657 elsif ("ABORT" =~ /^\Q$answer/i) { print "Action is abort\n" }
658 elsif ("LIST" =~ /^\Q$answer/i) { print "Action is list\n" }
659 elsif ("EDIT" =~ /^\Q$answer/i) { print "Action is edit\n" }
660
197aec24 661A totally different approach is to create a hash of function references.
c8db1d39
TC
662
663 my %commands = (
664 "happy" => \&joy,
665 "sad", => \&sullen,
666 "done" => sub { die "See ya!" },
667 "mad" => \&angry,
668 );
669
670 print "How are you? ";
671 chomp($string = <STDIN>);
672 if ($commands{$string}) {
673 $commands{$string}->();
674 } else {
675 print "No such command: $string\n";
197aec24 676 }
c8db1d39 677
49d635f9 678=head2 How can I catch accesses to undefined variables, functions, or methods?
68dc0745 679
680The AUTOLOAD method, discussed in L<perlsub/"Autoloading"> and
681L<perltoot/"AUTOLOAD: Proxy Methods">, lets you capture calls to
682undefined functions and methods.
683
684When it comes to undefined variables that would trigger a warning
49d635f9 685under C<use warnings>, you can promote the warning to an error.
68dc0745 686
49d635f9 687 use warnings FATAL => qw(uninitialized);
68dc0745 688
689=head2 Why can't a method included in this same file be found?
690
691Some possible reasons: your inheritance is getting confused, you've
692misspelled the method name, or the object is of the wrong type. Check
a6dd486b
JB
693out L<perltoot> for details about any of the above cases. You may
694also use C<print ref($object)> to find out the class C<$object> was
695blessed into.
68dc0745 696
697Another possible reason for problems is because you've used the
698indirect object syntax (eg, C<find Guru "Samy">) on a class name
699before Perl has seen that such a package exists. It's wisest to make
700sure your packages are all defined before you start using them, which
701will be taken care of if you use the C<use> statement instead of
a6dd486b 702C<require>. If not, make sure to use arrow notation (eg.,
c47ff5f1 703C<< Guru->find("Samy") >>) instead. Object notation is explained in
68dc0745 704L<perlobj>.
705
c8db1d39 706Make sure to read about creating modules in L<perlmod> and
ae93639c 707the perils of indirect objects in L<perlobj/"Method Invocation">.
c8db1d39 708
68dc0745 709=head2 How can I find out my current package?
710
711If you're just a random program, you can do this to find
712out what the currently compiled package is:
713
c8db1d39 714 my $packname = __PACKAGE__;
68dc0745 715
a6dd486b 716But, if you're a method and you want to print an error message
68dc0745 717that includes the kind of object you were called on (which is
718not necessarily the same as the one in which you were compiled):
719
720 sub amethod {
92c2ed05 721 my $self = shift;
68dc0745 722 my $class = ref($self) || $self;
723 warn "called me from a $class object";
724 }
725
46fc3d4c 726=head2 How can I comment out a large block of perl code?
727
f05bbc40
JH
728You can use embedded POD to discard it. The =for directive
729lasts until the next paragraph (two consecutive newlines).
46fc3d4c 730
731 # program is here
732
733 =for nobody
734 This paragraph is commented out
735
736 # program continues
737
f05bbc40
JH
738The =begin and =end directives can contain multiple
739paragraphs.
740
46fc3d4c 741 =begin comment text
742
743 all of this stuff
744
745 here will be ignored
746 by everyone
747
748 =end comment text
749
f05bbc40
JH
750The pod directives cannot go just anywhere. You must put a
751pod directive where the parser is expecting a new statement,
752not just in the middle of an expression or some other
753arbitrary s grammar production.
fc36a67e 754
f05bbc40 755See L<perlpod> for more details.
c8db1d39 756
65acb1b1
TC
757=head2 How do I clear a package?
758
759Use this code, provided by Mark-Jason Dominus:
760
761 sub scrub_package {
762 no strict 'refs';
763 my $pack = shift;
197aec24 764 die "Shouldn't delete main package"
65acb1b1
TC
765 if $pack eq "" || $pack eq "main";
766 my $stash = *{$pack . '::'}{HASH};
767 my $name;
768 foreach $name (keys %$stash) {
769 my $fullname = $pack . '::' . $name;
770 # Get rid of everything with that name.
771 undef $$fullname;
772 undef @$fullname;
773 undef %$fullname;
774 undef &$fullname;
775 undef *$fullname;
776 }
777 }
778
197aec24 779Or, if you're using a recent release of Perl, you can
65acb1b1
TC
780just use the Symbol::delete_package() function instead.
781
d92eb7b0
GS
782=head2 How can I use a variable as a variable name?
783
784Beginners often think they want to have a variable contain the name
785of a variable.
786
787 $fred = 23;
788 $varname = "fred";
789 ++$$varname; # $fred now 24
790
791This works I<sometimes>, but it is a very bad idea for two reasons.
792
a6dd486b
JB
793The first reason is that this technique I<only works on global
794variables>. That means that if $fred is a lexical variable created
795with my() in the above example, the code wouldn't work at all: you'd
796accidentally access the global and skip right over the private lexical
797altogether. Global variables are bad because they can easily collide
798accidentally and in general make for non-scalable and confusing code.
d92eb7b0
GS
799
800Symbolic references are forbidden under the C<use strict> pragma.
801They are not true references and consequently are not reference counted
802or garbage collected.
803
804The other reason why using a variable to hold the name of another
a6dd486b 805variable is a bad idea is that the question often stems from a lack of
d92eb7b0
GS
806understanding of Perl data structures, particularly hashes. By using
807symbolic references, you are just using the package's symbol-table hash
808(like C<%main::>) instead of a user-defined hash. The solution is to
809use your own hash or a real reference instead.
810
811 $fred = 23;
812 $varname = "fred";
813 $USER_VARS{$varname}++; # not $$varname++
814
815There we're using the %USER_VARS hash instead of symbolic references.
816Sometimes this comes up in reading strings from the user with variable
817references and wanting to expand them to the values of your perl
818program's variables. This is also a bad idea because it conflates the
819program-addressable namespace and the user-addressable one. Instead of
820reading a string and expanding it to the actual contents of your program's
821own variables:
822
823 $str = 'this has a $fred and $barney in it';
824 $str =~ s/(\$\w+)/$1/eeg; # need double eval
825
a6dd486b 826it would be better to keep a hash around like %USER_VARS and have
d92eb7b0
GS
827variable references actually refer to entries in that hash:
828
829 $str =~ s/\$(\w+)/$USER_VARS{$1}/g; # no /e here at all
830
831That's faster, cleaner, and safer than the previous approach. Of course,
832you don't need to use a dollar sign. You could use your own scheme to
833make it less confusing, like bracketed percent symbols, etc.
834
835 $str = 'this has a %fred% and %barney% in it';
836 $str =~ s/%(\w+)%/$USER_VARS{$1}/g; # no /e here at all
837
a6dd486b
JB
838Another reason that folks sometimes think they want a variable to
839contain the name of a variable is because they don't know how to build
840proper data structures using hashes. For example, let's say they
841wanted two hashes in their program: %fred and %barney, and that they
842wanted to use another scalar variable to refer to those by name.
d92eb7b0
GS
843
844 $name = "fred";
845 $$name{WIFE} = "wilma"; # set %fred
846
197aec24 847 $name = "barney";
d92eb7b0
GS
848 $$name{WIFE} = "betty"; # set %barney
849
850This is still a symbolic reference, and is still saddled with the
851problems enumerated above. It would be far better to write:
852
853 $folks{"fred"}{WIFE} = "wilma";
854 $folks{"barney"}{WIFE} = "betty";
855
856And just use a multilevel hash to start with.
857
858The only times that you absolutely I<must> use symbolic references are
859when you really must refer to the symbol table. This may be because it's
860something that can't take a real reference to, such as a format name.
861Doing so may also be important for method calls, since these always go
862through the symbol table for resolution.
863
864In those cases, you would turn off C<strict 'refs'> temporarily so you
865can play around with the symbol table. For example:
866
867 @colors = qw(red blue green yellow orange purple violet);
868 for my $name (@colors) {
869 no strict 'refs'; # renege for the block
870 *$name = sub { "<FONT COLOR='$name'>@_</FONT>" };
197aec24 871 }
d92eb7b0
GS
872
873All those functions (red(), blue(), green(), etc.) appear to be separate,
874but the real code in the closure actually was compiled only once.
875
876So, sometimes you might want to use symbolic references to directly
877manipulate the symbol table. This doesn't matter for formats, handles, and
a6dd486b
JB
878subroutines, because they are always global--you can't use my() on them.
879For scalars, arrays, and hashes, though--and usually for subroutines--
880you probably only want to use hard references.
d92eb7b0 881
5cd0b561
RGS
882=head2 What does "bad interpreter" mean?
883
884The "bad interpreter" message comes from the shell, not perl. The
885actual message may vary depending on your platform, shell, and locale
886settings.
887
888If you see "bad interpreter - no such file or directory", the first
889line in your perl script (the "shebang" line) does not contain the
890right path to perl (or any other program capable of running scripts).
891Sometimes this happens when you move the script from one machine to
892another and each machine has a different path to perl---/usr/bin/perl
893versus /usr/local/bin/perl for instance.
894
895If you see "bad interpreter: Permission denied", you need to make your
896script executable.
897
898In either case, you should still be able to run the scripts with perl
899explicitly:
900
901 % perl script.pl
902
903If you get a message like "perl: command not found", perl is not in
904your PATH, which might also mean that the location of perl is not
905where you expect it so you need to adjust your shebang line.
906
68dc0745 907=head1 AUTHOR AND COPYRIGHT
908
0bc0ad85 909Copyright (c) 1997-2002 Tom Christiansen and Nathan Torkington.
5a964f20
TC
910All rights reserved.
911
5a7beb56
JH
912This documentation is free; you can redistribute it and/or modify it
913under the same terms as Perl itself.
5a964f20
TC
914
915Irrespective of its distribution, all code examples in this file
916are hereby placed into the public domain. You are permitted and
917encouraged to use this code in your own programs for fun
918or for profit as you see fit. A simple comment in the code giving
919credit would be courteous but is not required.
a6dd486b 920