0
votes
13answers
1k 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 …
1
vote
4answers
81 views
C++ bool array as bitfield?
Hi!
let's say i need to store 8 bools in a struct, but i want to use for them only 1 byte together, then i could do something like this:
struct myStruct {
bool b1:1;
bool …
1
vote
4answers
68 views
C# bool expression evaluation order [closed]
Possible Duplicate:
== Operator and operands
Possible Duplicates:
Is there any difference between if(a==5) or if(5==a) in C#?
== Operator and operands
Ok, this …
1
vote
1answer
391 views
FormatException: Html.CheckBox(), UpdateModel() and the hidden input
i have my checkbox for a bool field like so in my view:
=Html.CheckBox("Active", ViewData["Active"] != null ? ViewData["Active"] : (ViewData.Model.Active != null ? ViewData.Model. …
0
votes
3answers
266 views
Compiling in c++ with mysql, pthreads and gtk
Have someone ever done this before???
I am trying to use MinGW to compile a program using the MySQL libraries. I keep getting the message that the function 'rint' is redefined. Ok …
9
votes
1answer
204 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:
#incl …
1
vote
5answers
166 views
Where is stdbool.h?
I want to find the _Bool definition on my system, so for systems where it's missing I can implement it. I've seen various definitions for it here and on other sites, but wanted to …
5
votes
10answers
537 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?
0
votes
4answers
180 views
NSTableColumn bound to a BOOL value
i have NSTableView bound to an NSArrayController. in my model i have a BOOL field. i'm trying to bind that value to the column. it displays correctly (1 where value is YES and 0 wh …
0
votes
2answers
87 views
Objective C - access BOOL ivar of void pointer to self
I have a thing that uses a SystemSoundID to play a sound, and then repeat with a C function being used as the sound completion callback, and the function is passed (void *)self (si …
2
votes
4answers
175 views
Are Python’s bools passed by value?
I sent a reference to a bool object, and I modified it within a method. After the method finished it's execution, the value of the bool outside the method was unchanged.
This lead …
0
votes
0answers
38 views
SQLite3 with NSMutableArray
In my app the user will be able to make/load configurations and each configuration is made up of NSStrings and BOOL values. I need to be able to store the users configurations int …
0
votes
4answers
160 views
Cast bool to T where T is int
How can I make this function reliably cast sourceValue to type T where sourceValue is bool and T is int?
public static T ConvertTo<T>(Object sourceValue)
{
// IF IS OF TH …
0
votes
1answer
201 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 : U …
4
votes
5answers
5k views
Which MYSQL Datatype to use for storing boolean values from/to PHP ?
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 readin …
