Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^4: Passing Variables

by GrandFather (Saint)
on Feb 28, 2021 at 23:29 UTC ( [id://11128923]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Passing Variables
in thread Passing Variables

Example code that skips error handling, unless that is made clear in the accompanying text, is an example of how to do something badly. I'm sure you didn't intend it like that, but error handling and considering edge cases are the key to writing robust reliable code.

Optimising for fewest key strokes only makes sense transmitting to Pluto or beyond

Replies are listed 'Best First'.
Re^5: Passing Variables
by Marshall (Canon) on Mar 13, 2021 at 19:41 UTC
    Well, jdporter says: "handle the arg list being empty. You probably don't want to throw a divide-by-zero exception."

    I am actually fine with that error code!

    I have written Perl code that intercepts various warnings in situations where I can actually fix the problem. I remember one sort routine where a numeric comparison didn't work and the code defaulted back to an alpha comparison. There is no "fix" for a "divide by zero".

    I added comments about this in further code. Grandfather is right about that. Document limitations.
    In the code, allowing Perl to throw a "divide by zero" exception is fine.
    The code is short. Detecting and printing an error that "will happen" is unnecessary, because there is no "fix" for that error.

      Detecting an error condition and printing a usage message however is vastly nicer than expecting the user to dig through the code enough to understand why something blew up, possibly miles away from the actual error.

      The "error" message then does two things, it provides run time documentation for unexpected states, and it subtly provides usage information during maintenance or casual reading of the code. As I said before, error handling and considering edge cases are the key to writing robust reliable code. The "consideration" part needs to be expressed in the code.

      Optimising for fewest key strokes only makes sense transmitting to Pluto or beyond

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11128923]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-23 18:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found