Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
32
votes
16answers
1k views

Which is clearer form: if(!value) or if(flag == value)?

I understand this is a subjective question, so I apologize if it needs to be closed, but I feel like it comes up often enough for me to wonder if there is a general preference for one form over the ...
7
votes
4answers
769 views

Why does this bitwise shift-right appear not to work?

Could someone explain to me why the mask is not shifted to the right at all? You can use anything in place of that 1 and the result will be the same. unsigned mask = ~0 >> 1; printf("%u\n", ...
3
votes
3answers
61 views

Not operator in regular expression

Given the following string 1080s: 33, 6&apos;2&quot; meg: test. 1748s: I THINK IM GONNA <span class="highlight" >PICK</span> 1749s: TWO COMPLETE OPPOSITES. I want to do regex ...
1
vote
4answers
128 views

What is meaning of !! in C — and why is it needed? [closed]

Possible Duplicate: Double Negation in C++ code While reading one code I read: flush = ! !(flags & GST_SEEK_FLAG_FLUSH); I am not getting what does !! mean here . what does this ...
1
vote
5answers
337 views

Easy SQL Syntax NOT LIKE with AND operators seem to be ignored

Thank you so much for helping! Nothing I seem to do works here. What I want to do is remove rows with a certain value in a certain column. Like so: Where SegStart_Date between getdate()-90 and ...
0
votes
1answer
82 views

MySQL not and not equal operators fail, what gives?

I have a table T that has a column A. A started with a default of NULL. 40 rows later, I changed the default to 1. Three rows had a value of 2. I tried to select all the rows where column A where ...
-1
votes
5answers
159 views

!flag has two meanings in java?

boolean flag = false; if(!flag) System.out.println(!flag); // prints true I wonder why !flag being considered as false when it's a conditional parameter passed to if statement and as true elsewhere? ...