In diagnosing some error problems, I made up a TIE module for printing. It works quite well, but does "wierd things" in one instance. The routine that is called says:
Use of uninitialized value in split at <routine/line> during global destruction.
The code is pretty simple (reconstructed a bit):
sub fool
{
my @vals;
my $n;
my $i;
while (@_)
{
@vals = split /(\n)/, (shift); # Error happens here
$n = @vals;
for ($i = 0; $i < $n; $i++)
{
print "The value is: $vals[$i] \n"; # Or similar action
}
}
}
My question: how do I detect that this error is GOING to happen with the called arguments (in this case to the 'fool' routine) so I can print out a more intelligent error message?
Is there any way I can "produce" this same error message using the 'fool' routine as shown above. It would "enlighten" me quite a bit.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.