Can someone explain what exactly the string "0 but true" means in Perl? As far as I understand, it equals zero in an integer comparison, but evaluates to true when used as a boolean. Is this correct? Is this a normal behavior of the language or is this a special string treated as a special case in the interpreter?
|
It's normal behaviour of the language. Quoting the
Because of this, there needs to be a way to return 0 from a system call that expects to return 0 as a (successful) return value, and leave a way to signal a failure case by actually returning a false value. |
|||||||||||||||||
|
|
Because it's hardcoded in the Perl core to treat it as a number. This is a hack to make Perl's conventions and
|
|||||||||||
|
|
Additionally to what others said,
|
|||
|
|
|
The value It has to do with the fact that when a Perl subroutine returns a 0 value, it is assumed that the routine failed or returned a false value. Imagine I have a subroutine that returns the sum of two numbers:
The first statement won't die because the subroutine will return a And, the third statement? Hmmm, I can add To get around this, Perl considers But is 0 but true a numeric zero? Try these:
Yup, it's zero! The index subroutine is a very old piece of Perl and existed before the concept of 0 but true was around. It is suppose to return the position of the substring located in the string:
The last statment returns a
As I normally do with standard functions, it wouldn't work. If I used "barfoo" and "bar" like I did in the second statement, The However, if the |
||||
|
|
|
You may also see the string "0E0" used in Perl code, and it means the same thing, where 0E0 just means 0 written in exponential notation. However, since Perl only considers "0", '' or undef as false, it evaluates to true in a boolean context. |
||||
|
|
|
It's hard-coded in Perl's source code, specifically in Perl_grok_number in numeric.c. (Look at line 747.) Reading that code I discovered that the string "infinity" (case insensitive) passes the looks_like_number test too. I hadn't known that. |
|||||
|
|
In an integer context, it evaluates to 0 (the numeric part at the beginning of the string) and is zero. In a scalar context, it's a non-empty value, so it is true. if (int("0 but true")) { print "zero"; } (no output) if ("0 but true") { print "true"; } (prints true) |
|||
|
|
|
0 means false in Perl (and other languages related to C). For the most part, that's a reasonable behavior. Other languages (Lua for instance) treat 0 as true and provide another token (often nil or false) to represent a non-true value. One case where the Perl way doesn't work so well is when you want to return either a number or, if the function fails for some reason, a false value. For instance, if you write a function that reads a line from a file and returns the number of characters on the line. A common usage of the function might be something like:
Notice that if the number of characters on a particular line is 0, the while loop will end before the end of the file. So the characters_in_line function should special case 0 characters and return '0 but true' instead. That way the function will work as intended in the while loop, but also return the correct answer should it be used as a number. Note that this isn't a built in part of the language. Rather it takes advantage of Perl's ability to interpret a string as a number. So other stings are sometimes used instead. DBI uses "0E0", for instance. When evaluated in numeric context, they return 0, but in boolean context, false. |
|||
|
|
|
Things that are false:
"0 but true" is not one of those, so it's not false. Furthermore, Perl returns "0 but true" where a number is expected in order to signal that a function succeeded even though it returned zero. sysseek is an example of such a function. Since the value is expected to be used as a number, Perl is coded to consider it to be a number. As a result, no warnings are issued when it's used as a number, and Other "true zeroes" can be found at http://www.perlmonks.org/?node_id=464548. |
|||||||||||||||||
|
|
Another example of "0 but true": The DBI module uses "0E0" as a return value for UPDATE or DELETE queries that didn't affect any records. It evaluates to true in a boolean context (indicating that the query was executed properly) and to 0 in a numeric context indicating that no records were changed by the query. |
|||
|
|
|
I just found proof that the string "0 but true" is actially built into the interpreter, like some people here already answered:
|
|||
|
|
|
"0 but true" is a string just like any other but because of perl's syntax it can serve a useful purpose, namely returning integer zero from a function without the result being "false"(in perl's eyes). And the string need not be "0 but true". "0 but false" is still "true"in the boolean sense. consider:
The upshot of all of this is you can have:
and have this code be able to print "0" as its output:
|
||||
|
When you want to write a function that returns either an integer value, or false or undef (i.e. for the error case) then you have to watch out for the value zero. Returning it is false and shouldn't indicate the error condition, so returning "0 but true" makes the function return value true while still passing back the value zero when math is done on it. |
|||
|
|
|
The string ``0 but true'' is still a special case:
give the following: (note the ``warning''!)
... and don't forget to RTFM!
|
|||
|
|
"0E0"another is like"0 but true". Instead of being hard coded it's a consequence of Perl's exponential notation. As a non-empty, non-zero string, it's true. As a number, it's 0. DBI uses it as a return value from things likeexecuteto indicate that the SQL statement worked, but no rows were affected. – Schwern Mar 16 '11 at 8:58