The Boolean data type represents simple True or False values.
350
votes
59answers
57k views
Check if at least two out of three booleans are true
An interviewer recently asked me this question: given three boolean variables, a, b, and c, return true if at least two out of the three are true.
My solution follows:
boolean atLeastTwo(boolean a, ...
202
votes
9answers
128k views
Which MySQL Datatype to use for storing boolean values?
Since MySQL doesn't seem to have any 'boolean' datatype, which datatype do you 'abuse' for storing true/false information in MySQL? Especially in the context of writing and reading from/to a ...
107
votes
25answers
4k views
Are booleans as method arguments unacceptable?
A colleague of mine states that booleans as method arguments are not acceptable. They shall be replaced by enumerations. At first I did not see any benefit, but he gave me an example.
What's easier ...
92
votes
9answers
52k views
What is the difference between Bool and Boolean types in C#
What is the difference between Bool and Boolean types in C#?
86
votes
11answers
7k views
When should null values of Boolean be used?
Java boolean allows values of true and false while Boolean allows true, false, and null. I have started to convert my booleans to Booleans. This can cause crashes in tests such as
Boolean set = null;
...
85
votes
4answers
102k views
How do I use boolean variables in Perl?
I have tried:
$var = false;
$var = FALSE;
$var = False;
None of these work. I get the error message
Bareword "false" not allowed while "strict subs" is in use.
79
votes
7answers
72k views
Objective-C : BOOL vs bool
I'm new to Objective-C and I saw the "new type" BOOL (YES, NO).
I read that this type is almost like a char.
For testing I did :
NSLog(@"Size of BOOL %d", sizeof(BOOL));
NSLog(@"Size of bool %d", ...
76
votes
14answers
2k views
Should programmers use boolean variables to “document” their code?
I'm reading McConell's Code Complete, and he discusses using boolean variables to document your code. For example, instead of:
if((elementIndex < 0) || (MAX_ELEMENTS < elementIndex) ||
...
68
votes
9answers
3k views
What does this boolean return mean?
On CodeReview I posted a working piece of code and asked for tips to improve it. One I got was to use a boolean method to check if an ArrayList had an even number of indices (which was required). This ...
62
votes
3answers
4k views
Booleans, conditional operators and autoboxing
Why does this throw NullPointerException
public static void main(String[] args) throws Exception {
Boolean b = true ? returnsNull() : false; // NPE on this line.
System.out.println(b);
}
...
57
votes
8answers
8k views
Which is faster : if (bool) or if(int)?
Which value is better to use? Boolean true or Integer 1?
The above topic made me do some experiments with bool and int in if condition. So just out of curiosity I wrote this program:
int f(int ...
55
votes
6answers
15k views
Is there a difference between YES/NO,TRUE/FALSE and true/false in objective-c?
Simple question really; is there a difference between these values (and is there a difference between BOOL and bool)? A co-worker mentioned that they evaluate to different things in Objective-C, but ...
52
votes
10answers
74k views
Using boolean values in C
C doesn't have any built in boolean types. What's the best way to use them in C?
51
votes
3answers
41k views
How to declare and use boolean variables in shell script?
The way I tried declaring a boolean variable is by:
variable=$false
variable=$true
Is the syntax correct? Also, if I wanted to update that variable would I just do the same format? Finally, is the ...
48
votes
6answers
39k views
ASP.NET MVC Yes/No Radio Buttons with Strongly Bound Model MVC
Does anyone know how to bind a Yes/No radio button to a boolean property of a Strongly Typed Model in ASP.NET MVC.
Model
public class MyClass
{
public bool Blah { get; set; }
}
View
<%@ ...
47
votes
4answers
2k views
bool operator ++ and --
Today while writing some Visual C++ code I have come across something which has surprised me. It seems C++ supports ++ (increment) for bool, but not -- (decrement). It this just a random decision, or ...
46
votes
8answers
14k views
Java: volatile boolean vs AtomicBoolean
What does AtomicBoolean do that a volatile boolean cannot achieve?
45
votes
10answers
32k views
Is bool a native C type?
I've noticed that the Linux kernel code uses bool, but I thought that bool was a C++ type. Is bool a standard C extension (e.g., ISO C90) or a GCC extension?
45
votes
7answers
22k views
Why does Boolean.ToString output “True” and not “true”
true.ToString()
false.toString();
Output:
True
False
Is there a valid reason for it being "True" and not "true"? It breaks when writing XML as XML's boolean type is lower case, and also isn't ...
45
votes
8answers
13k views
Java - boolean primitive type - size
The Java Virtual Machine Specification says that there is limited support for boolean primitive types.
There are no Java virtual machine instructions solely dedicated to operations on boolean ...
44
votes
19answers
4k views
boolean parameters — do they smell?
I just found a bug caused by a boolean parameter... the caller thought it was controlling one thing but it was really controlling something else. So do boolean parameters smell in general? ...
43
votes
10answers
10k views
In Javascript, why is “0” equal to false, but not false by itself?
The following shows that "0" is false in Javascript:
>>> "0" == false
true
>>> false == "0"
true
So why does the following print "ha"?
>>> if ("0") console.log("ha")
ha
...
42
votes
14answers
11k views
What does “0 but true” mean in Perl?
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? ...
40
votes
5answers
25k views
Cleanest way to toggle a boolean variable in Java?
Is there a better way to negate a boolean in Java than a simple if-else?
if (theBoolean) theBoolean = false; else theBoolean = true;
39
votes
41answers
4k views
Should I use `!IsGood` or `IsGood == false`?
I keep seeing code that does checks like this
if (IsGood == false)
{
DoSomething();
}
or this
if (IsGood == true)
{
DoSomething();
}
I hate this syntax, and always use the following ...
37
votes
6answers
1k views
C# || operator not working with nullable booleans
I have the following piece of code in my LINQ:
where (tf.Shipped || tf.Ordered || tf.Processed)
Note that Shipped, Ordered and Processed are all nullable Boolean fields
I am getting the ...
37
votes
3answers
1k views
defining “boolness” of a class in python
Why doesn't this work as one may have naively expected?
class Foo(object):
def __init__(self):
self.bar = 3
def __bool__(self):
return self.bar > 10
foo = Foo()
if foo:
print 'x'
...
37
votes
4answers
19k views
Is False == 0 and True == 1 in Python an implementation detail or is it guaranteed by the language?
Is it guaranteed that False == 0 and True == 1, in Python? For instance, is it in any way guaranteed that the following code will always produce the same results, whatever the version of Python (both ...
37
votes
8answers
13k views
Alternative to vector<bool>
As (hopefully) we all know, vector<bool> is totally broken and can't be treated as a c array. What is the best way to get this functionality?
So far, the ideas I have thought of are:
Use a ...
36
votes
10answers
48k views
Convert boolean to int in Java
What is the most accepted way to convert a boolean to an int in Java?
36
votes
12answers
8k views
Double Negation in C++ code
I just came onto a project with a pretty huge code base.
I'm mostly dealing with C++ and a lot of the code they write uses double negation for their boolean logic.
if (!!variable && ...
36
votes
6answers
41k views
BOOL to NSString
If I have a method that returns a BOOL, how do I cast that to a NSString so I can print it out with an NSLog?
For example,I tried doing this, which isn't working:
NSLog(@"Is Kind of NSString:", ...
34
votes
13answers
3k views
Is it bad to explicitly compare against boolean constants e.g. if (b == false) in Java?
Is it bad to write:
if (b == false) //...
while (b != true) //...
Is it always better to instead write:
if (!b) //...
while (!b) //...
Presumably there is no difference in performance (or is ...
33
votes
7answers
2k views
Is it Pythonic to use bools as ints?
False is equivalent to 0 and True is equivalent 1 so it's possible to do something like this:
def bool_to_str(value):
"""value should be a bool"""
return ['No', 'Yes'][value]
...
33
votes
10answers
2k views
Why would one use the |= operator on a boolean value in C#?
Example:
We found this is some vendor written code and we're trying to figure out why they'd do this.
bool tmp = false;
if (somecase)
tmp = true;
if (someOtherCase)
tmp |= true;
33
votes
8answers
3k views
what is !! in c? [duplicate]
I have encountered the following snippet:
pt->aa[!!(ts->flags & MASK)] = -val;
What does !! stand for in c ?
Isn't (!!NULL) == NULL ?
Is it a gcc extension related syntax ?
33
votes
3answers
1k views
Poor performance of vector<bool> in 64-bit target with VS2012
Benchmarking this class:
struct Sieve {
std::vector<bool> isPrime;
Sieve (int n = 1) {
isPrime.assign (n+1, true);
isPrime[0] = isPrime[1] = false;
for (int i = 2; i <= ...
32
votes
5answers
2k views
One-byte bool. Why?
In C++, why does a bool require one byte to store true or false where just one bit is enough for that, like 0 for false and 1 for true? (Why does Java also require one byte?)
Secondly, how much safer ...
32
votes
4answers
16k views
Is a bool read/write atomic in C#
Is accessing a bool field atomic in C#? In particular, do I need to put a lock around:
class Foo
{
private bool _bar;
//... in some function on any thread (or many threads)
_bar = true;
...
32
votes
1answer
10k views
31
votes
8answers
3k views
What are bitwise operators?
I'm someone who writes code just for fun and hasn't really delved into it in either an academic or professional setting, so stuff like this really escapes me. I was reading an article about ...
31
votes
2answers
1k views
Why is bool a subclass of int?
When storing a bool in memcached through python-memcached I noticed that it's returned as an integer. Checking the code of the library showed me that there is a place where isinstance(val, int) is ...
30
votes
17answers
8k views
Is !! a safe way to convert to bool in C++?
[This question is related to but not the same as this one.]
If I try to use values of certain types as boolean expressions, I get a warning. Rather than suppress the warning, I sometimes use the ...
29
votes
3answers
10k views
How to use a boolean in NSUserDefaults
When the root view controller of my application is loaded, I want to be able to check whether or not the users login credentials have been saved to NSUserDefaults.
Basically, when the user loads the ...
28
votes
7answers
10k views
Why use !! when converting int to bool?
What can be a reason for converting an integer to a boolean in this way?
bool booleanValue = !!integerValue;
instead of just
bool booleanValue = integerValue;
All I know is that in VC++7 the ...
28
votes
5answers
14k views
Android sqlite get boolean from database
was just wondering, how can I obtain the value of a boolean field in a sqlite database in android?
I usually use getString() getInt() etc to get the values of my fields, but there does not seem to be ...
28
votes
3answers
26k views
How to create a boolean value in XSLT?
I am totally new to XSLT and can't work out where I am going wrong with the following code.
<xsl:variable name="var" select="boolean('false')"/>
<xsl:if test="$var'">variable is ...
26
votes
10answers
24k views
Easiest way to flip a boolean value?
I just want to flip a boolean based on what it already is. If it's true - make it false. If it's false - make it true.
Here is my code excerpt:
switch(wParam) {
case VK_F11:
if (flipVal == true) ...
26
votes
10answers
2k views
Python elegant assignment based on True/False values
I have a variable I want to set depending on the values in three booleans. The most straight-forward way is an if statement followed by a series of elifs:
if a and b and c:
name = 'first'
elif a ...
26
votes
8answers
73k views
Declaring a boolean in JavaScript using just var
If I declare a JavaScript boolean variable like this:
var IsLoggedIn;
And then initialize it with either true or 1, is that safe? Or will initializing it with 1 make the variable a number?

