AUTOLOAD

Learn about the AUTOLOAD function and how it handles undeclared functions.

Calling undeclared functions

Perl doesn’t require us to declare every function before we call it. Perl will happily attempt to call a function even if it doesn’t exist. Consider this program:

Press + to interact
use Modern::Perl;
bake_pie( filling => 'apple' );

When we run it, Perl will throw an exception due to the call to the undefined function bake_pie().

Now, we’ll add a function called AUTOLOAD():

sub AUTOLOAD {}

Now when we run the program, nothing obvious will happen. Perl will call a function named AUTOLOAD() in a package—if it exists—whenever normal dispatch fails. Change the ...