I am unable to figure out an explanation on how polymorphism works in Perl. I understand what polymorphism means but I am trying to figure out how it internally works within perl. Can someone point me to some documentation that explains it. All the google searches I have done gives me examples of what polymorphism is in perl but not how perl makes it work.
|
|
When a method is invoked on an object or class, Perl looks to see if that method is provided directly by the class itself. Because classes are simply Perl packages, it is simply a matter of looking for the existence of a subroutine If no such subroutine is found, Perl examines the Each of those classes in turn may also have an Finally, if the method is found nowhere by this method, Perl looks in a special package A failure at this point goes on to implement the A failure to find a suitable matching method anywhere raises an exception. |
||||
|
|
|
Chapter 7 from Object Oriented Perl, Damian Conway, Manning (2000) is called Polymorphism. Ten pages. Be advised, however, in case you're coming from C++ or Java or C# or similar, that there's not so much to know about "polymorphism" in Perl. I'd even say the concept of polymorphism makes things more complicated than they are in Perl. I think the mechanism a Perl programmer should be striving to understand is how method lookup works. The answer is: depth-first recursive scanning through the An example, let's do |
||||
|
|
|
An object method call is basically an optimised* version of the following:
Since the class name is in the object and since Perl can check its symbol table at run-time, a virtual method table isn't needed to provide polymorphism. * — It caches which package provides method $method_name for class $class. Also, it surely doesn't calculate the whole linear ISA upfront, but as needed. |
||||
|
|
|
Polymorphism is simply the idea that objects of different types respond to method calls of the same name. Weakly typed languages, such as Perl, are "implicitly polymorphic". For example, a Strongly typed languages don't work this way because their functions specify the data types of their parameters. I can't call a function in Java with an object of type |
|||
|
|
|
This well suits inheritance-based polymorphism and gives some idea of what Perl does specifically. I have always used chapter 12.5. Class Inheritance in Programming Perl as a reference for these things. |
||||
|