Questions about this topic? Sign up to ask in the talk tab.
Perl/Basics/Variables and Data Types/References/Callback
From NetSec
Revision as of 02:32, 16 July 2012 by AlizaLorenzo (Talk | contribs) (Created page with "This involves user-defined functions. User-defined functions are covered later in this article. A callback reference is a scalar that points to a function. To create a callback...")
This involves user-defined functions. User-defined functions are covered later in this article. A callback reference is a scalar that points to a function. To create a callback reference:
my $callback = \&function_name; |
To execute the callback function and pass it arguments:
$callback->($arg1, $arg2); |