Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^5: What is true and false in Perl?

by jdporter (Paladin)
on Oct 18, 2012 at 15:25 UTC ( [id://999756]=note: print w/replies, xml ) Need Help??


in reply to Re^4: What is true and false in Perl?
in thread What is true and false in Perl?

The same thing tobyink and tye said, though more obtusely and snarkily.

Here's another example:

tie my $var, 'Some::BlackBox::Module'; $var = "45"; if ( $var ) { print "var is true\n" } # doesn't print! WTF?

The mere fact that an expression evaluates to a true value in scalar context doesn't mean it is true.

tie and overload are among the user-accessible features which can muddy the true/false waters.

An example like this should make the principle more obvious:

my $obj = ObjectWithLotsOfOpaqueStructure::AndLotsOfHiddenState->new( -use_overloading => 1, ); if ( $obj ) { print "obj is 'true'.\n"; # What does this even mean? # Maybe obj is an iterator with another available item? }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-04-20 03:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found