Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
48
votes
8answers
3k 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 ...
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#?
41
votes
4answers
995 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 ...
32
votes
3answers
803 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' ...
23
votes
4answers
8k 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; ...
20
votes
6answers
6k 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 ...
16
votes
4answers
3k 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 ...
15
votes
10answers
6k 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?
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 ...
12
votes
4answers
714 views

Why is 1 && 2 in C# false?

I got frustated with my other question. So i wrote up this example. In C the below is true. See demo int main() { printf("%d", 1 && 2); return 0; } Output: 1 In C#. It is FALSE. WHY is ...
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 ?
11
votes
1answer
3k views

default value of BOOL in Objective-C?

What is the default value of BOOL in Objective-C?
10
votes
3answers
172 views

How to write a `for` loop over bool values (false and true)

A question mostly for fun/curiosity: how to write a for loop in C++ that would iterate over two values of a bool (i.e. true and false), using only operations with bool (i.e. without conversions to ...
10
votes
2answers
148 views

Implicit conversion to explicit bool-types for sorting containers?

I am playing around with the new explicit for cast-operators. If you write something like struct Data { explicit operator string(); }; It is not possible to accidentally convert Data to ...
10
votes
4answers
359 views

Is there any difference between && and & with bool(s)?

In C++, is there any difference between doing && (logical) and & (bitwise) between bool(s)? bool val1 = foo(); bool val2 = bar(); bool case1 = val1 & val2; bool case2 = val1 ...
10
votes
1answer
261 views

Can someone explain this C++ comma operator short-circuiting example?

Can someone explain this C++ comma operator short-circuiting example? bIsTRUE = true, false, true; bIsFALSE = (true, false), true; bIsAlsoTRUE = ((true, false), true); Why does the second ...
9
votes
1answer
197 views

What is the size of a bool in PHP?

What is the size of a bool in PHP? For an int, it's easy to determine echo PHP_INT_SIZE; I got 4 so 8 bytes or 32 bits. What about for a bool type? Thanks.
9
votes
5answers
572 views

Why I can't extend bool in Python?

>>> class BOOL(bool): ... print "why?" ... why? Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: Error when calling the metaclass bases ...
9
votes
1answer
835 views

C++ implicit conversion to bool

In an effort to make my enums more typesafe, I've been using macro-generated overloaded operators to disallow comparing enums against anything but an identically typed enum: #include ...
8
votes
4answers
246 views

What is the size of a Nullable<Int32>?

So, a couple of questions, actually: An int (Int32) is specified to be (obviously) 32 bits. What about an int? (Nullable<int>)? My gut tells me that it would be 32 bits for the integer plus 8 ...
7
votes
3answers
237 views

Why is there an implicit type conversion from pointers to bool in C++?

Consider the class foo with two constructors defined like this: class foo { public: foo(const std::string& filename) {std::cout << "ctor 1" << std::endl;} foo(const bool ...
7
votes
10answers
2k views

Converting from a std::string to bool

What is the best way to convert a std::string to bool? I am calling a function that returns either "0" or "1", and I need a clean solution for turning this into a boolean value.
7
votes
4answers
7k views

Objective-C dictionary inserting a BOOL

OK, I'm a little confused. It's probably just a triviality. I've got a function which looks something like this: - (void)getNumbersForNews:(BOOL)news andMails:(BOOL)mails { NSMutableDictionary ...
7
votes
3answers
287 views

Why does a quoted string match bool method signature before a std::string?

Given the following methods: // Method 1 void add(const std::string& header, bool replace); //Method 2 void add(const std::string& name, const std::string& value); It would appear that ...
6
votes
3answers
140 views

How a bool type variable is stored in memory? (C++)

bool test; sizeof(test) = 1 if using VS 2010. Since every C++ data type must be addressable, the "test" bool variable is 8-bits(1 byte). My question is that does the "test" variable really occupy 1 ...
6
votes
2answers
536 views

Type casting a variable from jBoolean to bool

When using JNI to interface between Java and C, javah parses a boolean value in Java to jBoolean in the JNI header file. When I use bool in the C file, the Visual studio compiler throws a warning that ...
5
votes
4answers
110 views

what is the difference between these two c++ code blocks?

Why is the first one able to increment pbf_[k] correctly while the second one does not even do it(increment)for once? unsigned pbf_[5] ={0}; bool m=0; Code 1: for(int k=0;k<5;k++) { ...
5
votes
1answer
158 views

Python Numpy: how to count the number of true elements in a bool array

I have a numpy array 'boolarr' of bool type. I want to count the number of elements whose values are 'True'. Is there a numpy or python routine dedicated for this task? Or, do I need to iterate over ...
5
votes
4answers
360 views

C99 - why are false and true defined as 0 and 1 and not as ((bool)0) and ((bool)1)?

Just stumbled across an assert, that failed, as it compared false to the returntype of a function, as the function itself returned a bool and the assert checked not only the value, but also the type ...
5
votes
3answers
509 views

Why the sizeof(bool) is not defined by 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, ...
5
votes
4answers
664 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?
5
votes
1answer
5k views

error: property 'myBoolVariableName' with 'retain' attribute must be of object type

I have a BOOL value inside my @interface definition in my .h file. Here it is below. It has the same problem whether it's a pointer or not. @interface myCustomViewController : UIViewController ...
5
votes
15answers
14k views

Default value for bool in C++

I'm redesigning a class constructor in C++ and need it to catch an unspecified bool. I have used default values for all of the other parameters, but from my understanding bool can only be initialized ...
4
votes
2answers
89 views

Python bool(Ellipsis) and bool(None)

I don't understand how are Ellipsis and None handled differently by bool(), when both seem to be identical in terms of the relevant attributes for truth-testing. >>> bool(Ellipsis) True ...
4
votes
3answers
113 views

c#: shorter way to write v1! ? v2 : !v2

Can I write bool v1, v2; // ... EDIT: I am very sorry for the confusions. The correct statement should be: bool v3 = !v1 ? v2 : !v2; ORIGINAL I asked for bool v3 = v1 ? v2 : !v2; even ...
4
votes
6answers
187 views

Why does sscanf not work properly with a bool type

The output of this code: const char *buff = "*_2D 1"; char field[10]; int flag; sscanf(buff, "%s %d", field, &flag); printf("field:%s flag:%i\n", field, flag); is field:*_2D flag:1 However by ...
4
votes
6answers
551 views

What is the difference between false and FALSE?

In many programs, I see statements with the identifiers FALSE and false. Is there any difference between them in the context of C++? Also in some programs, I saw bool and somewhere BOOL. What is the ...
4
votes
6answers
123 views

Python operators returning ints

Is there any way to have Python operators line "==" and ">" return ints instead of bools. I know that I could use the int function (int(1 == 1)) or add 0 ((1 == 1) + 0) but I was wondering if there ...
4
votes
14answers
1k views

What is the use of Nullable<bool> type?

a bool variable could hold true or false, while bool? could be null as well. Why would we need a third value for bool ? If it is not true, what ever it is, it is == false Can you suggest a scenario ...
4
votes
2answers
295 views

Help with c# and bool on asp.net mvc

Whats the best way to print out "Yes" or "No" depending on a value In my view I want to print out Model.isStudent and I dont want True or False, I want Yes or No.... do I Have to write if else ...
4
votes
2answers
391 views

C++ from C#: C++ function (in a DLL) returning false, but C# thinks it's true!

I'm writing a little C# app that calls a few functions in a C++ API. I have the C++ code building into a DLL, and the C# code calls the API using DllImport. (I am using a .DEF file for the C++ DLL so ...
3
votes
1answer
82 views

C++ ASM Inline how to use boolean?

Say I got something like this.. bool isPatched; I have a few other GUI's where I set isPatched= true; and isPatched= false;, isPatched = !isPatched; void __declspec( naked ) test(void) { // ...
3
votes
2answers
202 views

C# boolean int conversion issue

I am working on a trading API (activex from interactive brokers)which has a method called: void reqMktDataEx(int tickerId, IContract contract, string generalDetails, int snapshot) The issue is ...
3
votes
2answers
39 views

Which values should be used for Mysql BOOL field: TRUE/FALSE or 1/0, why?

Will it make any difference to use FALSE/TRUE or 0/1 for BOOL/BOOLEAN field in mysql. Which one of them is better/safer to use?
3
votes
2answers
79 views

Declared but unset variable evaluates as true?

I was doing a simple calculator with the following code. Right now it executes perfectly. When I tried to change things around, however, it doesn't work. I used BOOL program to check whether to ...
3
votes
5answers
210 views

Can't cast int to bool

I'm facing the problem that C# in my case can't cast the number 1 to bool. In my scenario (bool)intValue doesn't work. I get an InvalidCastException. I know I can use Convert.ToBoolean but I'm just ...
3
votes
1answer
236 views

Understanding method returning BOOL by using !=

This is a rather basic question regarding the syntax of the return statement in the shouldAutoRotateToInterfaceOrientation method of a view controller. In order to allow all views except for the ...
3
votes
2answers
181 views

isinstance of bool?

in Python, i'd like to check to make sure a command line argument is of type bool before I use it in a conditional statement. this: isinstance(sys.argv[2], bool) is coming back false. What's the right ...
3
votes
4answers
499 views

Is sizeof(bool) implementation defined in C++?

I can't find an answer in the standard documentation. Is sizeof(bool) always 1-byte, or is it implementation defined as long as it can store the boolean literals?

1 2 3 4 5