vote up 12 vote down star
1

I always forget :S
How do you remember which number stands for TRUE or FALSE?

(when I started css the colors black and white always confused me. Is white #FFFFFF or #000000. A trick I came up with: black is 0,because z0rr0 is dressed in …)

flag
1  
+1, everyone has to start somewhere. Cut him some slack. – Dean Nov 30 '08 at 23:52
why is this downvoted? – Johannes Schaub - litb Nov 30 '08 at 23:58
this is actually a nice question. +1 – shoosh Dec 1 '08 at 0:08
I got asked this at work the other day actually, no need to down-vote. – Shahin Dec 1 '08 at 0:12
in which context? language-specific? – Jay Bazuzi Dec 1 '08 at 1:25
show 2 more comments

18 Answers

vote up 38 vote down

It depends on who you ask - in Shell scripting, 0 is true and anything else indicates false. In C, 0 is false, and anything else is true. In Ruby, nil and false are false and everything else is true.

So, in summary, your question can be answered by "look it up for whatever you're doing"

link|flag
+1 because I didn't know that. – Dean Dec 1 '08 at 3:24
1  
+1 for showing examples, and pointing out the diversity in languages. I'm always suspicious of one-size-fits-all answers. – Ken Paul Dec 1 '08 at 4:01
@Ken, +1 to you for voting up for the same reason I would – Nathan Fellman Dec 2 '08 at 10:21
I thought I should note that in Bash, it really isn't true vs false, it is more error versus not error. – he_the_great Dec 2 '08 at 22:03
@he_the_great: true, but the notation "command1 && command2" seems to hint at some analogy that says "0 -> no error -> true" and "1 -> error -> false". – Joachim Sauer Dec 4 '08 at 10:35
vote up 34 vote down

FALSE is 0 because there is nothing. TRUE is anything non-zero, because there is SOMETHING. (And, yes, TRUE is often defined as -1 in many languages; and generally anything non-0 is considered to be TRUE).

As for colors - 0 is black because (guess what) - there is nothing. It's dark. No photons coming out. #FFFFFF is white, because white contains all colors.

link|flag
vote up 13 vote down

True is True and False is False.

The representaion of those values as a number is simply an implementation detail that your language / compiler cares about. Its a fools game to start relying on or fiddling around with your languages implementation details for anything, including bool types (enums fit into this category as well)

link|flag
vote up 11 vote down

My undergrad C professor had a nice way to remember this:
"someone who lies (false) is a nobody (0)"

I guess it sounds better in the original language (Hebrew)

link|flag
I guess it's weird. I had never even thought to justify this convention. I never really questioned it. – BobbyShaftoe Dec 12 '08 at 8:13
vote up 4 vote down

I always remember that most languages are optimistic. So while only 0 = false, everything else = true.

link|flag
vote up 4 vote down

One of the nice things about C99 is that you can

#include <stdbool.h>

and get a predfined bool type as well as predefined true and false.

link|flag
STL is always a good idea. I don't want to see #define TRUE 1 again. – jim Dec 2 '08 at 10:18
vote up 3 vote down

In the Ruby programming language, 0 is not false, so beware if you start playing with it :)

link|flag
Really? What is false? – Shahin Dec 1 '08 at 0:13
false and nil are "false", everything else is "true" – Ferruccio Dec 1 '08 at 1:11
@Ferruccio, that should be stated in the answer then. (@ you only because you could edit the question) – he_the_great Dec 4 '08 at 3:45
vote up 2 vote down

The convention is always that 0 is false, anything else is true whether that be 1 = true, or -1 (ie the signed int 0xffffffff) = true.

So, just remember 0 = false, or false is nothing.

link|flag
vote up 0 vote down

For most contexts, 0 is considered FALSE. Any non-zero value is considered TRUE, though 1 is most often used.

link|flag
1 is not most often used. You will fall into many traps thinging like that. ture == !false is a better way to think about it. – Martin York Dec 1 '08 at 1:36
vote up 0 vote down

Another easy way to remember it is by the power button on some computers, especially olders ones: 0 means there is no power flowing/off because there is a gap; 1 means there is power flowing/on because there isn't a gap.

link|flag
Or one might think of a transistor... – Chris Conway Dec 1 '08 at 3:52
vote up 0 vote down

I learned programming and digital logic at the same time, so the association has always been there for me. I can't say I've ever forgotten it. Remembering it as on/off may help. It probably also helps to learn boolean algebra, since it's basically just like normal algebra except 0 = false and 1 = true (also, no values are allowed to be any other number).

link|flag
vote up 0 vote down

It's context-specific, so there's no universal answer to this question.

In my opinion, the question doesn't even make sense: integers and booleans are different domains; there's no reason there should be a universal mapping between them. If you have a need for such a mapping, there's a problem in your programming model.

link|flag
vote up 0 vote down

Depends on the language, but let me give you a hint for Python.

As you know, zero is identity for addition (n + 0 = n for any n) and zero element for multiplication (n x 0 = 0 for any n).

Now, you must realize that OR, AND and NOT are Boolean counterparts of "ordinary" algebraic operations, addition, multiplication and negation, respectively. But Boolean algebra doesn't have 0 - what value is identity for OR and zero for AND?

It's false. false OR n = n, false AND n = false, for any n.

Python extends this logic to collections as well, taking concatenation as the counterpart to addition (n + [] = n for any list n). So, empty strings, dictionaries and lists mean false as well. It's not the purest model, but it's pretty useful.

link|flag
vote up 0 vote down

Relative to Python:

I enjoy mathematics, so I'm fairly booked up on the mathematical idea that "zero is not a number."

Ergo, I thought of it as "numbers" are true and "not a number" is false. Which simplifies into "is something there?" and then just becomes another programming convention.

To keep white and black separate in RGB values, I just pretend that the numbers are how much electricity I want to devote to that color, so #000000 translates to "leave it off" (black).

link|flag
>on the mathematical idea that "zero is not a number." Where does that come from? – recursive Sep 9 at 4:52
vote up 0 vote down

it only snows when its #FFFFFFreezing - makes it easy to remember in the northeast US. might not work so good at lower latitudes.

link|flag
vote up 0 vote down

I always think of the hex color codes as the amount of light coming out of the screen, in red, green, and blue components. 0 is no light and ff (255) is max light.

Thus:

  • #000000 -> no light (black)
  • #ff0000 -> red
  • #00ff00 -> green
  • #0000ff -> blue

You can then play around to get different shades, without pulling up a reference:

  • #555 -> dark gray
  • #aaa -> gray
  • #ccc -> light gray
  • #faa -> lighter red
link|flag
vote up 0 vote down

I always find the following is an IRC conversation useful:

(morganj): 0 is false and 1 is true, correct?
(alec_eso): 1, morganj
(morganj): bastard.

(from bash.org)

link|flag
vote up -1 vote down

In shell scripting, I wouldn't necessarily say that 0 = true, but rather that for most OS's, the execution of a program is expected to return an error status integer, which will be 0 if the program completed successfully, and a nonzero error code otherwise.

I have done this when I wasn't sure what integer value (1, -1, etc....) a new language used for TRUE (pseudocode):

Let my_FALSE := 0

Let my_TRUE := not(my_FALSE)

Print my_TRUE, my_FALSE, not(not(my_FALSE))

In most cases if you got FALSE right, the first and third numbers will be the same.

A long time ago, some languages made it interesting to do stuff like this, but it doesn't always work.

Let my_TRUE := (0 == 1 - 1)
Let my_FALSE := (1 == 5)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.