Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: reference , advantages?

by Sandy (Curate)
on Jun 30, 2011 at 18:10 UTC ( [id://912226]=note: print w/replies, xml ) Need Help??


in reply to reference , advantages?

Sometimes it is advantageous to use code-refs.
#!/usr/bin/perl use strict; use warnings; my $dref = \&new_date; my $fref = \&new_date_append; # call function foo, print different types of date foo ($dref); foo ($fref); sub new_date { my ( $year, $month, $day ) = (localtime)[ 5, 4, 3 ]; sprintf( "%04d%02d%02d", ( $year += 1900 ), $month + 1, $day ); } sub new_date_append { my $date = new_date(); return "OhioS___$date"; } sub foo { my $date_fn = shift; print $date_fn->(),"\n"; }
Note

$dref=\&new_date is a reference to SUBROUTINE, $dref=\&new_date() is reference to the SCALAR returned by the subroutine

Replies are listed 'Best First'.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://912226]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (2)
As of 2025-07-11 01:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.