in reply to Object properties and Methods
You can use the Perl debugger to get to the point where you have the object created and enter the command "m $object" to see the list of methods and what package provides them. Then, if the object is typical, enter the command "x keys %$object" to get the list of properties. Unless the object is wicked (such as those blessed file handles that have become so popular), the command "x $object" will dump the whole object data structure.
I hope that helps.
- tye (but my friends call me "Tye")
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (tye)Re: Object properties and Methods
by fmogavero (Monk) on Mar 23, 2001 at 19:56 UTC | |
by busunsl (Vicar) on Mar 23, 2001 at 20:00 UTC |