Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

554 lines
20 KiB

  1. =head1 NAME
  2. perlobj - Perl objects
  3. =head1 DESCRIPTION
  4. First of all, you need to understand what references are in Perl.
  5. See L<perlref> for that. Second, if you still find the following
  6. reference work too complicated, a tutorial on object-oriented programming
  7. in Perl can be found in L<perltoot>.
  8. If you're still with us, then
  9. here are three very simple definitions that you should find reassuring.
  10. =over 4
  11. =item 1.
  12. An object is simply a reference that happens to know which class it
  13. belongs to.
  14. =item 2.
  15. A class is simply a package that happens to provide methods to deal
  16. with object references.
  17. =item 3.
  18. A method is simply a subroutine that expects an object reference (or
  19. a package name, for class methods) as the first argument.
  20. =back
  21. We'll cover these points now in more depth.
  22. =head2 An Object is Simply a Reference
  23. Unlike say C++, Perl doesn't provide any special syntax for
  24. constructors. A constructor is merely a subroutine that returns a
  25. reference to something "blessed" into a class, generally the
  26. class that the subroutine is defined in. Here is a typical
  27. constructor:
  28. package Critter;
  29. sub new { bless {} }
  30. That word C<new> isn't special. You could have written
  31. a construct this way, too:
  32. package Critter;
  33. sub spawn { bless {} }
  34. In fact, this might even be preferable, because the C++ programmers won't
  35. be tricked into thinking that C<new> works in Perl as it does in C++.
  36. It doesn't. We recommend that you name your constructors whatever
  37. makes sense in the context of the problem you're solving. For example,
  38. constructors in the Tk extension to Perl are named after the widgets
  39. they create.
  40. One thing that's different about Perl constructors compared with those in
  41. C++ is that in Perl, they have to allocate their own memory. (The other
  42. things is that they don't automatically call overridden base-class
  43. constructors.) The C<{}> allocates an anonymous hash containing no
  44. key/value pairs, and returns it The bless() takes that reference and
  45. tells the object it references that it's now a Critter, and returns
  46. the reference. This is for convenience, because the referenced object
  47. itself knows that it has been blessed, and the reference to it could
  48. have been returned directly, like this:
  49. sub new {
  50. my $self = {};
  51. bless $self;
  52. return $self;
  53. }
  54. In fact, you often see such a thing in more complicated constructors
  55. that wish to call methods in the class as part of the construction:
  56. sub new {
  57. my $self = {};
  58. bless $self;
  59. $self->initialize();
  60. return $self;
  61. }
  62. If you care about inheritance (and you should; see
  63. L<perlmodlib/"Modules: Creation, Use, and Abuse">),
  64. then you want to use the two-arg form of bless
  65. so that your constructors may be inherited:
  66. sub new {
  67. my $class = shift;
  68. my $self = {};
  69. bless $self, $class;
  70. $self->initialize();
  71. return $self;
  72. }
  73. Or if you expect people to call not just C<CLASS-E<gt>new()> but also
  74. C<$obj-E<gt>new()>, then use something like this. The initialize()
  75. method used will be of whatever $class we blessed the
  76. object into:
  77. sub new {
  78. my $this = shift;
  79. my $class = ref($this) || $this;
  80. my $self = {};
  81. bless $self, $class;
  82. $self->initialize();
  83. return $self;
  84. }
  85. Within the class package, the methods will typically deal with the
  86. reference as an ordinary reference. Outside the class package,
  87. the reference is generally treated as an opaque value that may
  88. be accessed only through the class's methods.
  89. A constructor may re-bless a referenced object currently belonging to
  90. another class, but then the new class is responsible for all cleanup
  91. later. The previous blessing is forgotten, as an object may belong
  92. to only one class at a time. (Although of course it's free to
  93. inherit methods from many classes.) If you find yourself having to
  94. do this, the parent class is probably misbehaving, though.
  95. A clarification: Perl objects are blessed. References are not. Objects
  96. know which package they belong to. References do not. The bless()
  97. function uses the reference to find the object. Consider
  98. the following example:
  99. $a = {};
  100. $b = $a;
  101. bless $a, BLAH;
  102. print "\$b is a ", ref($b), "\n";
  103. This reports $b as being a BLAH, so obviously bless()
  104. operated on the object and not on the reference.
  105. =head2 A Class is Simply a Package
  106. Unlike say C++, Perl doesn't provide any special syntax for class
  107. definitions. You use a package as a class by putting method
  108. definitions into the class.
  109. There is a special array within each package called @ISA, which says
  110. where else to look for a method if you can't find it in the current
  111. package. This is how Perl implements inheritance. Each element of the
  112. @ISA array is just the name of another package that happens to be a
  113. class package. The classes are searched (depth first) for missing
  114. methods in the order that they occur in @ISA. The classes accessible
  115. through @ISA are known as base classes of the current class.
  116. All classes implicitly inherit from class C<UNIVERSAL> as their
  117. last base class. Several commonly used methods are automatically
  118. supplied in the UNIVERSAL class; see L<"Default UNIVERSAL methods"> for
  119. more details.
  120. If a missing method is found in one of the base classes, it is cached
  121. in the current class for efficiency. Changing @ISA or defining new
  122. subroutines invalidates the cache and causes Perl to do the lookup again.
  123. If neither the current class, its named base classes, nor the UNIVERSAL
  124. class contains the requested method, these three places are searched
  125. all over again, this time looking for a method named AUTOLOAD(). If an
  126. AUTOLOAD is found, this method is called on behalf of the missing method,
  127. setting the package global $AUTOLOAD to be the fully qualified name of
  128. the method that was intended to be called.
  129. If none of that works, Perl finally gives up and complains.
  130. Perl classes do method inheritance only. Data inheritance is left up
  131. to the class itself. By and large, this is not a problem in Perl,
  132. because most classes model the attributes of their object using an
  133. anonymous hash, which serves as its own little namespace to be carved up
  134. by the various classes that might want to do something with the object.
  135. The only problem with this is that you can't sure that you aren't using
  136. a piece of the hash that isn't already used. A reasonable workaround
  137. is to prepend your fieldname in the hash with the package name.
  138. sub bump {
  139. my $self = shift;
  140. $self->{ __PACKAGE__ . ".count"}++;
  141. }
  142. =head2 A Method is Simply a Subroutine
  143. Unlike say C++, Perl doesn't provide any special syntax for method
  144. definition. (It does provide a little syntax for method invocation
  145. though. More on that later.) A method expects its first argument
  146. to be the object (reference) or package (string) it is being invoked on. There are just two
  147. types of methods, which we'll call class and instance.
  148. (Sometimes you'll hear these called static and virtual, in honor of
  149. the two C++ method types they most closely resemble.)
  150. A class method expects a class name as the first argument. It
  151. provides functionality for the class as a whole, not for any individual
  152. object belonging to the class. Constructors are typically class
  153. methods. Many class methods simply ignore their first argument, because
  154. they already know what package they're in, and don't care what package
  155. they were invoked via. (These aren't necessarily the same, because
  156. class methods follow the inheritance tree just like ordinary instance
  157. methods.) Another typical use for class methods is to look up an
  158. object by name:
  159. sub find {
  160. my ($class, $name) = @_;
  161. $objtable{$name};
  162. }
  163. An instance method expects an object reference as its first argument.
  164. Typically it shifts the first argument into a "self" or "this" variable,
  165. and then uses that as an ordinary reference.
  166. sub display {
  167. my $self = shift;
  168. my @keys = @_ ? @_ : sort keys %$self;
  169. foreach $key (@keys) {
  170. print "\t$key => $self->{$key}\n";
  171. }
  172. }
  173. =head2 Method Invocation
  174. There are two ways to invoke a method, one of which you're already
  175. familiar with, and the other of which will look familiar. Perl 4
  176. already had an "indirect object" syntax that you use when you say
  177. print STDERR "help!!!\n";
  178. This same syntax can be used to call either class or instance methods.
  179. We'll use the two methods defined above, the class method to lookup
  180. an object reference and the instance method to print out its attributes.
  181. $fred = find Critter "Fred";
  182. display $fred 'Height', 'Weight';
  183. These could be combined into one statement by using a BLOCK in the
  184. indirect object slot:
  185. display {find Critter "Fred"} 'Height', 'Weight';
  186. For C++ fans, there's also a syntax using -E<gt> notation that does exactly
  187. the same thing. The parentheses are required if there are any arguments.
  188. $fred = Critter->find("Fred");
  189. $fred->display('Height', 'Weight');
  190. or in one statement,
  191. Critter->find("Fred")->display('Height', 'Weight');
  192. There are times when one syntax is more readable, and times when the
  193. other syntax is more readable. The indirect object syntax is less
  194. cluttered, but it has the same ambiguity as ordinary list operators.
  195. Indirect object method calls are usually parsed using the same rule as list
  196. operators: "If it looks like a function, it is a function". (Presuming
  197. for the moment that you think two words in a row can look like a
  198. function name. C++ programmers seem to think so with some regularity,
  199. especially when the first word is "new".) Thus, the parentheses of
  200. new Critter ('Barney', 1.5, 70)
  201. are assumed to surround ALL the arguments of the method call, regardless
  202. of what comes after. Saying
  203. new Critter ('Bam' x 2), 1.4, 45
  204. would be equivalent to
  205. Critter->new('Bam' x 2), 1.4, 45
  206. which is unlikely to do what you want. Confusingly, however, this
  207. rule applies only when the indirect object is a bareword package name,
  208. not when it's a scalar, a BLOCK, or a C<Package::> qualified package name.
  209. In those cases, the arguments are parsed in the same way as an
  210. indirect object list operator like print, so
  211. new Critter:: ('Bam' x 2), 1.4, 45
  212. is the same as
  213. Critter::->new(('Bam' x 2), 1.4, 45)
  214. For more reasons why the indirect object syntax is ambiguous, see
  215. L<"WARNING"> below.
  216. There are times when you wish to specify which class's method to use.
  217. In this case, you can call your method as an ordinary subroutine
  218. call, being sure to pass the requisite first argument explicitly:
  219. $fred = MyCritter::find("Critter", "Fred");
  220. MyCritter::display($fred, 'Height', 'Weight');
  221. Note however, that this does not do any inheritance. If you wish
  222. merely to specify that Perl should I<START> looking for a method in a
  223. particular package, use an ordinary method call, but qualify the method
  224. name with the package like this:
  225. $fred = Critter->MyCritter::find("Fred");
  226. $fred->MyCritter::display('Height', 'Weight');
  227. If you're trying to control where the method search begins I<and> you're
  228. executing in the class itself, then you may use the SUPER pseudo class,
  229. which says to start looking in your base class's @ISA list without having
  230. to name it explicitly:
  231. $self->SUPER::display('Height', 'Weight');
  232. Please note that the C<SUPER::> construct is meaningful I<only> within the
  233. class.
  234. Sometimes you want to call a method when you don't know the method name
  235. ahead of time. You can use the arrow form, replacing the method name
  236. with a simple scalar variable containing the method name:
  237. $method = $fast ? "findfirst" : "findbest";
  238. $fred->$method(@args);
  239. =head2 Default UNIVERSAL methods
  240. The C<UNIVERSAL> package automatically contains the following methods that
  241. are inherited by all other classes:
  242. =over 4
  243. =item isa(CLASS)
  244. C<isa> returns I<true> if its object is blessed into a subclass of C<CLASS>
  245. C<isa> is also exportable and can be called as a sub with two arguments. This
  246. allows the ability to check what a reference points to. Example
  247. use UNIVERSAL qw(isa);
  248. if(isa($ref, 'ARRAY')) {
  249. #...
  250. }
  251. =item can(METHOD)
  252. C<can> checks to see if its object has a method called C<METHOD>,
  253. if it does then a reference to the sub is returned, if it does not then
  254. I<undef> is returned.
  255. =item VERSION( [NEED] )
  256. C<VERSION> returns the version number of the class (package). If the
  257. NEED argument is given then it will check that the current version (as
  258. defined by the $VERSION variable in the given package) not less than
  259. NEED; it will die if this is not the case. This method is normally
  260. called as a class method. This method is called automatically by the
  261. C<VERSION> form of C<use>.
  262. use A 1.2 qw(some imported subs);
  263. # implies:
  264. A->VERSION(1.2);
  265. =back
  266. B<NOTE:> C<can> directly uses Perl's internal code for method lookup, and
  267. C<isa> uses a very similar method and cache-ing strategy. This may cause
  268. strange effects if the Perl code dynamically changes @ISA in any package.
  269. You may add other methods to the UNIVERSAL class via Perl or XS code.
  270. You do not need to C<use UNIVERSAL> in order to make these methods
  271. available to your program. This is necessary only if you wish to
  272. have C<isa> available as a plain subroutine in the current package.
  273. =head2 Destructors
  274. When the last reference to an object goes away, the object is
  275. automatically destroyed. (This may even be after you exit, if you've
  276. stored references in global variables.) If you want to capture control
  277. just before the object is freed, you may define a DESTROY method in
  278. your class. It will automatically be called at the appropriate moment,
  279. and you can do any extra cleanup you need to do. Perl passes a reference
  280. to the object under destruction as the first (and only) argument. Beware
  281. that the reference is a read-only value, and cannot be modified by
  282. manipulating C<$_[0]> within the destructor. The object itself (i.e.
  283. the thingy the reference points to, namely C<${$_[0]}>, C<@{$_[0]}>,
  284. C<%{$_[0]}> etc.) is not similarly constrained.
  285. If you arrange to re-bless the reference before the destructor returns,
  286. perl will again call the DESTROY method for the re-blessed object after
  287. the current one returns. This can be used for clean delegation of
  288. object destruction, or for ensuring that destructors in the base classes
  289. of your choosing get called. Explicitly calling DESTROY is also possible,
  290. but is usually never needed.
  291. Do not confuse the foregoing with how objects I<CONTAINED> in the current
  292. one are destroyed. Such objects will be freed and destroyed automatically
  293. when the current object is freed, provided no other references to them exist
  294. elsewhere.
  295. =head2 WARNING
  296. While indirect object syntax may well be appealing to English speakers and
  297. to C++ programmers, be not seduced! It suffers from two grave problems.
  298. The first problem is that an indirect object is limited to a name,
  299. a scalar variable, or a block, because it would have to do too much
  300. lookahead otherwise, just like any other postfix dereference in the
  301. language. (These are the same quirky rules as are used for the filehandle
  302. slot in functions like C<print> and C<printf>.) This can lead to horribly
  303. confusing precedence problems, as in these next two lines:
  304. move $obj->{FIELD}; # probably wrong!
  305. move $ary[$i]; # probably wrong!
  306. Those actually parse as the very surprising:
  307. $obj->move->{FIELD}; # Well, lookee here
  308. $ary->move->[$i]; # Didn't expect this one, eh?
  309. Rather than what you might have expected:
  310. $obj->{FIELD}->move(); # You should be so lucky.
  311. $ary[$i]->move; # Yeah, sure.
  312. The left side of ``-E<gt>'' is not so limited, because it's an infix operator,
  313. not a postfix operator.
  314. As if that weren't bad enough, think about this: Perl must guess I<at
  315. compile time> whether C<name> and C<move> above are functions or methods.
  316. Usually Perl gets it right, but when it doesn't it, you get a function
  317. call compiled as a method, or vice versa. This can introduce subtle
  318. bugs that are hard to unravel. For example, calling a method C<new>
  319. in indirect notation--as C++ programmers are so wont to do--can
  320. be miscompiled into a subroutine call if there's already a C<new>
  321. function in scope. You'd end up calling the current package's C<new>
  322. as a subroutine, rather than the desired class's method. The compiler
  323. tries to cheat by remembering bareword C<require>s, but the grief if it
  324. messes up just isn't worth the years of debugging it would likely take
  325. you to to track such subtle bugs down.
  326. The infix arrow notation using ``C<-E<gt>>'' doesn't suffer from either
  327. of these disturbing ambiguities, so we recommend you use it exclusively.
  328. =head2 Summary
  329. That's about all there is to it. Now you need just to go off and buy a
  330. book about object-oriented design methodology, and bang your forehead
  331. with it for the next six months or so.
  332. =head2 Two-Phased Garbage Collection
  333. For most purposes, Perl uses a fast and simple reference-based
  334. garbage collection system. For this reason, there's an extra
  335. dereference going on at some level, so if you haven't built
  336. your Perl executable using your C compiler's C<-O> flag, performance
  337. will suffer. If you I<have> built Perl with C<cc -O>, then this
  338. probably won't matter.
  339. A more serious concern is that unreachable memory with a non-zero
  340. reference count will not normally get freed. Therefore, this is a bad
  341. idea:
  342. {
  343. my $a;
  344. $a = \$a;
  345. }
  346. Even thought $a I<should> go away, it can't. When building recursive data
  347. structures, you'll have to break the self-reference yourself explicitly
  348. if you don't care to leak. For example, here's a self-referential
  349. node such as one might use in a sophisticated tree structure:
  350. sub new_node {
  351. my $self = shift;
  352. my $class = ref($self) || $self;
  353. my $node = {};
  354. $node->{LEFT} = $node->{RIGHT} = $node;
  355. $node->{DATA} = [ @_ ];
  356. return bless $node => $class;
  357. }
  358. If you create nodes like that, they (currently) won't go away unless you
  359. break their self reference yourself. (In other words, this is not to be
  360. construed as a feature, and you shouldn't depend on it.)
  361. Almost.
  362. When an interpreter thread finally shuts down (usually when your program
  363. exits), then a rather costly but complete mark-and-sweep style of garbage
  364. collection is performed, and everything allocated by that thread gets
  365. destroyed. This is essential to support Perl as an embedded or a
  366. multithreadable language. For example, this program demonstrates Perl's
  367. two-phased garbage collection:
  368. #!/usr/bin/perl
  369. package Subtle;
  370. sub new {
  371. my $test;
  372. $test = \$test;
  373. warn "CREATING " . \$test;
  374. return bless \$test;
  375. }
  376. sub DESTROY {
  377. my $self = shift;
  378. warn "DESTROYING $self";
  379. }
  380. package main;
  381. warn "starting program";
  382. {
  383. my $a = Subtle->new;
  384. my $b = Subtle->new;
  385. $$a = 0; # break selfref
  386. warn "leaving block";
  387. }
  388. warn "just exited block";
  389. warn "time to die...";
  390. exit;
  391. When run as F</tmp/test>, the following output is produced:
  392. starting program at /tmp/test line 18.
  393. CREATING SCALAR(0x8e5b8) at /tmp/test line 7.
  394. CREATING SCALAR(0x8e57c) at /tmp/test line 7.
  395. leaving block at /tmp/test line 23.
  396. DESTROYING Subtle=SCALAR(0x8e5b8) at /tmp/test line 13.
  397. just exited block at /tmp/test line 26.
  398. time to die... at /tmp/test line 27.
  399. DESTROYING Subtle=SCALAR(0x8e57c) during global destruction.
  400. Notice that "global destruction" bit there? That's the thread
  401. garbage collector reaching the unreachable.
  402. Objects are always destructed, even when regular refs aren't and in fact
  403. are destructed in a separate pass before ordinary refs just to try to
  404. prevent object destructors from using refs that have been themselves
  405. destructed. Plain refs are only garbage-collected if the destruct level
  406. is greater than 0. You can test the higher levels of global destruction
  407. by setting the PERL_DESTRUCT_LEVEL environment variable, presuming
  408. C<-DDEBUGGING> was enabled during perl build time.
  409. A more complete garbage collection strategy will be implemented
  410. at a future date.
  411. In the meantime, the best solution is to create a non-recursive container
  412. class that holds a pointer to the self-referential data structure.
  413. Define a DESTROY method for the containing object's class that manually
  414. breaks the circularities in the self-referential structure.
  415. =head1 SEE ALSO
  416. A kinder, gentler tutorial on object-oriented programming in Perl can
  417. be found in L<perltoot>.
  418. You should also check out L<perlbot> for other object tricks, traps, and tips,
  419. as well as L<perlmodlib> for some style guides on constructing both modules
  420. and classes.