- 论坛徽章:
- 0
|
回复 9# dugu072_cu
3q
看到了
- When you invoke a method methname on an invocant of type classname, Perl tries six different ways to find a subroutine to use:
- First, Perl looks in the invocant's own package for a subroutine named classname::methname. If that fails, inheritance kicks in, and we go to step 2.
- Next, Perl checks for methods inherited from base classes by looking in all parent packages listed in @classname::ISA for a parent::methname subroutine. The search is left-to-right, recursive, and depth-first. The recursion assures that grandparent classes, great-grandparent classes, great-great-grandparent classes, and so on, are all searched.
- If that fails, Perl looks for a subroutine named UNIVERSAL::methname.
- At this point, Perl gives up on methname and starts looking for an AUTOLOAD. First, it looks for a subroutine named classname::AUTOLOAD.
- Failing that, Perl searches all parent packages listed in @classname::ISA, for any parent::AUTOLOAD subroutine. The search is again left-to-right, recursive, and depth-first.
- Finally, Perl looks for a subroutine named UNIVERSAL::AUTOLOAD.
- Perl stops after the first successful attempt and invokes that subroutine. If no subroutine is found, an exception is raised, one that you'll see frequently:
复制代码 |
|