in reply to Re: (dmm): Time to seconds
in thread Time to seconds
Why should this cause a warning? The behavior is well-defined, documented, rational, and well understood. I don't think perl should be warning me about this since it is a feature of Perl!60 * undef
Your solution (nothing personal, its a common workaround) converts the above expression to:
Which doesn't spew out a warning... The question is why not? If the first one gives me a "Use of uninitialized value in multiplication" error, why wouldn't this give me a "Use of uninitialized value in logical OR" error? Its not like undef in boolean context is more well-behaved than in numeric context1. Why should one throw a warning and the other not... Either both should trigger warnings and we sprinkle lots of defined() calls everywhere, or neither should.60 * (undef || 0)
Adding gratuitous logic to avoid spurious warnings doesn't agree with me. Better just to turn those specific warnings off and be done with it.
1I know thats splitting hairs, but the fact that it is splitting hairs is kind of my point anyway.
-Blake
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: no warnings 'uninitialized' (was:Time to seconds)
by BrentDax (Hermit) on Nov 16, 2001 at 12:58 UTC | |
by blakem (Monsignor) on Nov 16, 2001 at 16:25 UTC | |
by Anonymous Monk on Nov 16, 2001 at 23:03 UTC | |
by blakem (Monsignor) on Nov 17, 2001 at 00:53 UTC |