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 sentence do?
EDIT:
I got it its a double-negative. trick to convert non-bool data to bool
But what is the need of that? Here flush is bool then if you assign any non zero item to bool it will treat as 1 and zero item as 0 so whats benefit of doing this?
!) with the bitwise NOT (~)? – Uwe Keim Dec 15 '11 at 6:02GST_SEEK_FLAGS_FLUSHbit is set in theflagsvariable. – Uwe Keim Dec 15 '11 at 6:30bool. It was just anintwhich could have any number in it. So ifflushwould still be an int then the result of(flag & GST_SEEK_FLAG_FLUSH)might have the values 0 orGST_SEEK_FLAG_FLUSH. AndGST_SEEK_FLAG_FLUSHcould be1but it could also be4. Now if you want to ensure that the result of that expression is either0or1whileflushbeing an int you could either write(flags & GST_SEEK_FLAG_FLUSH) != 0or what you have seen!!(flags & GST_SEEK_FLAG_FLUSH). – vstm Dec 15 '11 at 6:36