This is strange. The following:
$sum = !0;
print $sum;
prints out 1 as you would expect. But this
$sum = !1;
print $sum;
prints out nothing. Why?
|
|
|
Be careful: what you've written isn't doing what you think it's doing. Remember, perl has no real boolean datatype. It's got scalars, hashes, lists, and references. The way it handles true/false values, then, is contextual. Everything evaluates to "true" in perl except for undefined variables, the empty list, the empty string, and the number 0. What your code is doing, then, is taking the inverse of a value that evaluates to "false", which can be anything which is not in the list above. By convention and for simplicity's sake, perl returns 1 (though you should not rely on that; it could very well return a list containing a series of random numbers, because that will evaluate to "true" as well.) A similar thing happens when you ask for the inverse of a value that evaluates to "true." What's actually being printed out is not "nothing," it's the empty string (''), which, as I mentioned, evaluates to "false" in boolean expressions. You can check this:
If you're asking for why perl spits out the empty string instead of one of the other "false" values, well, it's probably because perl is made to handle strings and that's a perfectly reasonable string to hand back. |
|||||||||||||
|
|
The operators that only return a boolean result will always return 1 for true and a special false value that's "" in string contexts but 0 in numeric contexts. |
|||
|
|
|
The |
|||||||
|
|
See perldoc perlsyn:
There, if you print the value as a number, you will get
or
Compare those to
and
|
||||
|
|
|
Here's an addendum to the other great answers you've already gotten. Not's Not NotConsider the following code that tests each of Perl's 'not' operators: !/usr/bin/perluse strict; use warnings; for( '!1', 'not 1', '~0' ) { my $value = eval; my $zero_plus = 0 + $value;
} print "\nTest addition for a literal null string: "; print 0+'', "\n"; use Scalar::Util qw(dualvar); { # Test a dualvar my $value = dualvar 0, ''; my $zero_plus = 0+$value;
} Executing it results follow. Notice the warning message:
From this we learn several things. The first two items are not all that exciting:
Now, the interesting item:
It Takes Two to TangleSomething fishy is happening, and that fishiness has to do with special scalar contexts in Perl. In this case, the distinction between numeric and string contexts. And the ability to create a variable that has different values in each context, aka a dual variable. It looks like The dualvar test at the end, shows that a homemade dualvar works the same way as But It's A Good ThingLike many Perl features, dual variables seem at first to defy expectations, and can be confusing. However, like those other features, used appropriately they make life much easier. As far as I know, a dualvar of 0 and '' is the only defined value that will return false in all scalar contexts. So it is a very sensible return value for Another famous dualvar is It's Not Nothing, Its Empty, but its NoughtSo in summary, you aren't getting nothing, you aren't getting an empty string, and you aren't getting zero. You are getting a variable that is both an empty string and 0 at the same time. |
|||
|
|