in reply to Re^2: Dealing with abstract methods in Perl 5.8
in thread Dealing with abstract methods in Perl 5.8
Another advantage of using END is that it executes once per process, not once per object. A system that uses lots of little objects could get much slower with your code... Also, it will catch missing methods for objects which are not created in the process.
-sam
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Dealing with abstract methods in Perl 5.8
by glasswalk3r (Friar) on Apr 24, 2007 at 19:13 UTC | |
by samtregar (Abbot) on Apr 25, 2007 at 16:55 UTC |