Training, Open Source computer languages

PerlPythonMySQLTclRubyC & C++LuaJavaTomcatPHPhttpdLinux

Search for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
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 Environment
P219 - Perl - Libraries and Resources

Back to
Object Oriented Perl - First Steps
Previous and next
or
Horse's mouth home
Forward to
What a difference a day made
Some other Articles
Anonymous functions (lambdas) and map in Python
Liverpool - a friendly city
Domain Renewal Group
What a difference a day made
Debugging and Data::Dumper in Perl
Object Oriented Perl - First Steps
About dieing and exiting in Perl
Remember your units
Reactive (dynamic) formatting in Perl
Seven 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).

© WELL HOUSE CONSULTANTS LTD., 2009: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • FAX: 01144 1225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho