Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^5: What operator should perl5porters use for safe dereferencing?

by BrowserUk (Patriarch)
on Jun 05, 2012 at 11:52 UTC ( [id://974437]=note: print w/replies, xml ) Need Help??


in reply to Re^4: What operator should perl5porters use for safe dereferencing?
in thread What operator should perl5porters use for safe dereferencing?

I'm curious, why add another operator?

I've not been party to the discussion to implement this, so take my take on it in that light.

Basically, some -- I would say most -- of the time, you do not want this behaviour.

Most of the time, if you have a variable that should contain a reference, that your program logic requires you to call a method on (or dereference to use as a hash or array ref) then if it does not contain a reference, it is an error that your program cannot safely continue from, and all you can do is stop with an error message. Ie die.

But there are sufficient cases where a potential reference not having a value is not fatal; that having to code an explicit test before each dereference clutters what could otherwise be clear and concise code.

The use of different operators allows the programmer to cater for both situations cleanly, with little fuss.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

The start of some sanity?

  • Comment on Re^5: What operator should perl5porters use for safe dereferencing?

Log In?
Username:
Password:

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

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

    No recent polls found