35
votes
22answers
1k 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 …
26
votes
41answers
3k 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 …
16
votes
17answers
2k 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 …
16
votes
9answers
1k views
Why use boolean instead of char?
Hi,
This is a silly question but why does a Boolean take up 4 bytes and a char take up 2 in the .NET framework?
It makes me wonder if I should start using chars like a boolean to save memory in …
16
votes
12answers
2k 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? …
15
votes
9answers
880 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 …
14
votes
19answers
918 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? …
12
votes
6answers
658 views
C# newbie: what’s the difference between “bool” and “bool?” ?
Hello,
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 …
11
votes
12answers
1k 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
8answers
5k views
What is the difference between Bool and Boolean types in C#
What is the difference between Bool and Boolean types in C#?
8
votes
7answers
468 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 …
8
votes
14answers
955 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 …
8
votes
2answers
410 views
The Clojure (or Lisp) Equivalent of a Compound Boolean Test
In C++ I'd write something like this:
if (a == something && b == anotherthing)
{
foo();
}
Am I correct in thinking the Clojure equivalent is something like this:
(if (= a something)
…
8
votes
21answers
1k 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, …
7
votes
10answers
1k 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) …
