Tagged Questions

The Boolean data type represents simple True or False values.

learn more… | top users | synonyms

209
votes
55answers
42k views

Check if at least 2 out of 3 booleans is true

An interviewer recently asked me this question: given 3 boolean variables a, b, c, return true if at least 2 out of the 3 are true. My solution follows: boolean atLeastTwo(boolean a, boolean b, ...
82
votes
24answers
3k 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 ...
75
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) || ...
62
votes
7answers
45k 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 ...
47
votes
8answers
28k views

What is the difference between Bool and Boolean types in C#

What is the difference between Bool and Boolean types in C#?
43
votes
4answers
57k 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.
42
votes
5answers
39k 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", ...
37
votes
19answers
2k 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? ...
35
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 ...
30
votes
3answers
1k views

Booleans, conditional operators and autoboxing

Why does this throw NPE public static void main(String[] args) throws Exception { Boolean b = true ? returnsNull() : false; // NPE on this line. System.out.println(b); } public static ...
30
votes
9answers
7k 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? ...
29
votes
9answers
1k 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 ...
25
votes
11answers
1k 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 ...
23
votes
17answers
5k 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 ...
22
votes
9answers
2k 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 ...
21
votes
5answers
5k 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 ...
20
votes
13answers
4k 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 && ...
19
votes
6answers
3k views

C# newbie: what's the difference between “bool” and “bool?”?

I'm starting with C#, and encountered something that puzzles me. I use the "bool" type for variables as I was used to in C++, and I try to put the values of functions or properties I expect to be ...
18
votes
4answers
297 views

Why does the Boolean object have a public constructor in Java?

Documentation for the constructor new Boolean(boolean value) in Java states: Note: It is rarely appropriate to use this constructor. Unless a new instance is required, the static factory ...
18
votes
8answers
3k 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 ...
18
votes
9answers
2k views

Why does boolean consume more memory than char?

Why does a Boolean consume 4 bytes and a char 2 bytes in the .NET framework? A Boolean should take up 1bit or at least be smaller than a char.
17
votes
7answers
981 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] ...
17
votes
7answers
955 views

Why do Java and C# not have implicit conversions to boolean?

Since I started Java it's been very aggravating for me that it doesn't support implicit conversions from numeric types to booleans, so you can't do things like: if (flags & 0x80) { ... } ...
17
votes
10answers
10k 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) ...
16
votes
2answers
368 views

Why is 'True == not False' a syntax error in Python?

Comparing boolean values with == works in Python. But when I apply the boolean not operator, the result is a syntax error: Python 2.7 (r27:82500, Sep 16 2010, 18:02:00) [GCC 4.5.1 20100907 (Red Hat ...
15
votes
3answers
3k views

What does !! (double exclamation point) mean?

In the code below, from a blog post by Alias, I noticed the use of the double exclamation point !!. I was wondering what it meant and where I could go in the future to find explanations for Perl ...
15
votes
9answers
4k 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 ...
15
votes
7answers
8k views

Why is a char and a bool the same size in c++?

I'm reading The C++ Programming Language. In it Stroustrup states that sizeof(char) == 1 and 1 <= sizeof(bool). The specifics depend on the implementation. Why would such a simple value as a ...
14
votes
5answers
587 views

Is there anything like “std::and” or “std::or”?

Given a container of boolean values (An example is std::vector<bool>), is there a standard function that returns true if all the values are true ("and") or true if at least one value is true ...
14
votes
3answers
661 views

Reasons not to use _Bool in Objective-C?

Since C99, C now has a proper Boolean type, _Bool. Objective-C, as a strict superset of C, inherits this, but when it was created back in the 1980s, there was no C Boolean type, so Objective-C defined ...
14
votes
7answers
4k views

Java: volatile boolean vs AtomicBoolean

What does AtomicBoolean do that a volatile boolean cannot achieve?
14
votes
6answers
3k views

Why 0 is true but false is 1 in bash?

false; echo $? The above will output 1,which is contradictory with all other programming languages I know. Any reason in this?
14
votes
4answers
736 views

Why overload true and false instead of defining bool operator?

I've been reading about overloading true and false in C#, and I think I understand the basic difference between this and defining a bool operator. The example I see around is something like: public ...
14
votes
3answers
13k 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 ...
14
votes
5answers
10k 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;
14
votes
12answers
14k views

Converting bool to text in C++

Maybe this is a dumb question, but is there any way to convert a boolean value to a string such that 1 turns to "true" and 0 turns to "false"? I could just use an if statement, but it would be nice ...
13
votes
4answers
200 views

Python “in” does not check for type?

>>> False in [0] True >>> type(False) == type(0) False The reason I stumbled upon this: For my unit-testing I created lists of valid and invalid example values for each of my ...
13
votes
6answers
181 views

JavaScript type conversion: (true && 1) vs (true | | 1)

JavaScript is non-strictly typed language as Java,for example. As we know, it converts value of result dependently upon context: "2" + "3" results "23" "2" * "3" results 6 This is quite clear and ...
13
votes
4answers
323 views

Boolean vs Int in Javascript

I always assumed that booleans were more efficient than ints at storing an on/off value - considering that's their reason for existence. I recently decided to check if this is true with the help of ...
13
votes
10answers
2k views

Is if(var == true) faster than if(var != false)?

Pretty simple question. I know it would probably be a tiny optimization, but eventually you'll use enough if statements for it to matter. EDIT: Thank you to those of you who have provided answers. ...
13
votes
6answers
20k 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:", ...
13
votes
7answers
10k 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 ...
13
votes
21answers
3k views

Has TRUE always had a non-zero value?

I have a co-worker that maintains that TRUE used to be defined as 0 and all other values were FALSE. I could swear that every language I've worked with, if you could even get a value for a boolean, ...
12
votes
1answer
9k views

How to declare and use boolean variables in shell script?

Title. 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? ...
12
votes
6answers
1k views

Can I assume (bool)true == (int)1 for any C++ compiler?

Can I assume (bool)true == (int)1 for any C++ compiler ?
12
votes
14answers
4k views

Does “if ([bool] == true)” require one more step than “if ([bool])”?

This is a purely pedantic question, to sate my own curiosity. I tend to go with the latter option in the question (so: if (boolCheck) { ... }), while a coworker always writes the former (if ...
12
votes
12answers
3k views

Why use “Y”/“N” instead of a bit field in Microsoft SQL Server?

I'm working on an application developed by another mob and am confounded by the use of a char field instead of bit for all the boolean columns in the database. It uses "Y" for true and "N" for false ...
11
votes
5answers
311 views

Chaining Bool values give opposite result to expected

Unthinkingly I wrote some code to check that all the values of a struct were set to 0. To accomplish this I used: bool IsValid() { return !(0 == year == month == day == hour == minute == second); ...
11
votes
3answers
546 views

Boolean.hashCode()

Now I see how to implement a method hashCode() for the Boolean object: public int hashCode() { return value ? 1231 : 1237; } And I wonder why it returns a values 1231 or 1237, why not something ...
11
votes
17answers
844 views

Using [0,1] versus [“Y”,“N”] versus [“T”,“F”] in a logical/boolean database field?

Just out of curiosity and lack of a definite answer... I was just looking at some data that is sent from a 3rd party to us, and their "Gender" field is a [0,1] denoting either a Female (0) or a Male ...

1 2 3 4 5 19