The Boolean data type represents simple True or False values.

learn more… | top users | synonyms (1)

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 && ...
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 ...
199
votes
9answers
126k 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 ...
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", ...
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 ...
34
votes
12answers
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 ...
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#?
36
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 ...
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] ...
37
votes
4answers
18k 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 ...
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 ...
51
votes
10answers
73k 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?
10
votes
5answers
3k views

Boolean expression (grammar) parser in c++

I want to parse a boolean expression (in C++). Input form: a and b xor (c and d or a and b); I just want to parse this expression into a tree, knowing the precedence rule (not,and,xor,or). So the ...
13
votes
7answers
4k views

Difference in & and &&

I always thought that "&&" operator in JAVA is used for verifying whether both its boolean operands are TRUE, and the "&" operator is used to do Bit wise operations on two integer types, ...
10
votes
3answers
4k views

Double Pipe Symbols in Ruby Variable Assignment? [duplicate]

Possible Duplicate: What does ||= mean in Ruby? Forgive me if this is a newby question but im reading a book on rails where the writer used this expression in a helper method: ...
45
votes
8answers
14k views

Java: volatile boolean vs AtomicBoolean

What does AtomicBoolean do that a volatile boolean cannot achieve?
44
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?
18
votes
3answers
3k views

Why the sizeof(bool) is not defined to be one, by the Standard itself?

Size of char, signed char and unsigned char is defined to be 1 byte, by the C++ Standard itself. I'm wondering why it didn't define the sizeof(bool) also? C++03 Standard $5.3.3/1 says, ...
43
votes
10answers
9k 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 ...
29
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 ...
23
votes
7answers
14k 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 ...
8
votes
4answers
748 views

Why is it not good practice to synchronize on Boolean?

My architect always says that Never synchronize on Boolean I am not able to understand reason why and would really appreciate if someone can explain with example as to why it is not good ...
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 ...
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 ...
24
votes
3answers
5k 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 ...
16
votes
7answers
12k views

PHP - Get bool to echo false when false

For some reason, the following code doesn't print out anything: $bool_val = (bool)false; echo $bool_val; But the following code prints out 1: $bool_val = (bool)true; echo $bool_val; Is there a ...
35
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?
8
votes
12answers
872 views

Is anybody using the named boolean operators?

Or are we all sticking to our taught "&&, ||, !" way? Any thoughts in why we should use one or the other? I'm just wondering because several answers state thate code should be as natural as ...
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 ...
85
votes
4answers
101k 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.
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); } ...
11
votes
3answers
3k views

What is the purpose of new Boolean() in Javascript?

What is the use of: var flag = new Boolean(false); compared to: var flag = false; When would you actually use new Boolean?
8
votes
8answers
6k views

Boolean and Math Expression Parser

I am writing an application that allows a user to enter a boolean expression. I need the ability to evaluate the entered boolean expression at runtime and am looking for both a parser and a ...
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? ...
32
votes
3answers
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; ...
14
votes
4answers
3k views

Is sizeof(bool) defined?

I can't find an answer in the standard documentation. Is sizeof(bool) always 1-byte, or is it implementation defined?
2
votes
4answers
8k views

convert bool[] to byte[] C#

I have a list. I want to convert it to a byte[]. How do i do this? .toarray() creates a bool[].
22
votes
2answers
8k views

C99 boolean data type?

What's the C99 boolean data type and how to use it?
2
votes
1answer
255 views

Logical operator || in javascript, 0 stands for Boolean false?

I happened to know the following code Here is the code, and very simple: var test = 0 || -1 ; console.log(test); then the output in the console is -1 and somehow i am really new into the ...
10
votes
8answers
5k views

Casting a boolean to an integer returns -1 for true?

I am working with some VB.NET code that seems to be casting a boolean value to an integer using CInt(myBoolean). The odd thing that is happening is that it returns -1 if the value is true. For ...
3
votes
4answers
1k views

Java: Ternary with no return. (For method calling)

I was wondering if it was possible to do a ternary operation but without returning anything. If it's not possible in Java is it possible in other languages, if so which ones apply? -TK //This here ...
8
votes
5answers
3k views

Is C/C++ bool type always guaranteed to be 0 or 1 when typecast'ed to int?

Many compilers seem to be keeping only 0 or 1 in bool values, but I'm not sure this will always work: int a = 2 bool b = a; int c = 3 + b; // 4 or 5?
1
vote
1answer
2k views

mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in [duplicate]

I'm have some trouble checking if an FB User_id already exists in my db (if it doesn't it should then accept user as a new one and else just load the canvas app). I ran it on my hosting server and ...
348
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, ...
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? ...
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 ...
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;
25
votes
6answers
22k views

Objective C Boolean Array

I need to utilize an array of booleans in objective-c. I've got it mostly set up, but the compiler throws a warning at the following statement: [updated_users replaceObjectAtIndex:index ...
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' ...
22
votes
6answers
4k 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 ...

1 2 3 4 5 6