NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Exception debate (Score:2)
Re:Exception debate (Score:2)
Absolutely wonderful writeup! That definitely makes the think that checked exceptions might not be the WunderTool that I thought. The problem appears to lie in programmers being pressed for time and thus "swallowing" exceptions with the intent to come back to them later. We all know what a lie "I'll do it tomorrow" is :)
try { /* exception swallowed */
doSomethingWith(foo);
} catch (SomeException e) {}
Knowing full well that I'm often under the gun at work, I could easily see myself doing t
Closures (Score:2)
Re:Closures (Score:1)
Re:Closures (Score:2)
Re:Closures (Score:2)
That's a great article. Thank you very much. That was certainly a pitfall that I was not anticipating