Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: OO: All Methods

by zentara (Archbishop)
on Dec 15, 2003 at 16:59 UTC ( [id://314847]=note: print w/replies, xml ) Need Help??


in reply to OO: All Methods

Hi, I'm no expert on OO, but I'm a good code librarian. Does this snippet help?
#!/usr/bin/perl #given an arbitrary object, get a dump of all #the functions connected to the object. use CGI; my $obj = CGI->new(); print &dump_functions( $obj ); sub dump_functions { use Data::Dumper; use Class::Inspector; my ( $obj ) = @_; my ( $ref, $methods); $ref = ref $obj; $methods = Class::Inspector->methods( $ref, 'full', 'public' ); @{ $methods } = grep /$ref/, @{ $methods }; return Dumper( $methods ); } __END__

OUTPUT:

$VAR1 = [ 'CGI::AUTOLOAD', 'CGI::DESTROY', 'CGI::XHTML_DTD', 'CGI::add_parameter', 'CGI::all_parameters', 'CGI::binmode', 'CGI::cgi_error', 'CGI::charset', 'CGI::compile', 'CGI::croak', 'CGI::delete', 'CGI::escape', 'CGI::expand_tags', 'CGI::expires', 'CGI::import', 'CGI::init', 'CGI::initialize_globals', 'CGI::make_attributes', 'CGI::new', 'CGI::param', 'CGI::parse_params', 'CGI::print', 'CGI::put', 'CGI::read_from_cmdline', 'CGI::rearrange', 'CGI::save_request', 'CGI::self_or_CGI', 'CGI::self_or_default', 'CGI::to_filehandle', 'CGI::unescape' ];

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (6)
As of 2024-04-23 12:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found