|
Debugging and Data::Dumper in Perl
I'll admit it - I'm not a great fan of debuggers, preferring to write well structured code, and check it out with a few test / intermediate print statements. You'll often find I code:
$trace and print (something);
in Perl, and this allows me to add a line
$trace=1;
at the head of my program to turn my own tuned debug mode on, then to comment the line out (or set the variable to zero) to turn my debug mode off.
There are, though, a few occasions where even I will admit that the -d option to Perl - calling in the debugger - can be useful.
I was also reminded on Friday of the Data::Dumper module, which allows you to convert the contents of a variable into a printable string of source code - in other words to let you display a variable's content. The module is shipped with Perl, and will even dump out objects. Here's an example of it in use:
use Data::Dumper;
print Dumper($rover);
And some output from that:
$VAR1 = bless( {
'breed' => 'Parrot',
'hf' => 4,
'name' => 'Rover',
'age' => 12
}, 'beast' );
The full source code is here with the Perl module it uses available here (written 2008-11-02 02:24:27)
Associated topics are indexed under P203 - More about the Perl EnvironmentP219 - Perl - Libraries and Resources
Some other Articles
Anonymous functions (lambdas) and map in PythonLiverpool - a friendly cityDomain Renewal GroupWhat a difference a day madeDebugging and Data::Dumper in PerlObject Oriented Perl - First StepsAbout dieing and exiting in PerlRemember your unitsReactive (dynamic) formatting in PerlSeven new intermediate Perl examples
|
1975 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|