Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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' ];

In reply to Re: OO: All Methods by zentara
in thread OO: All Methods by rkg

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (3)
As of 2024-04-24 13:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found