Prevent misuse of logical operator instead of bitwise operators - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T03:05:41Zhttp://stackoverflow.com/feeds/question/980438http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/980438/prevent-misuse-of-logical-operator-instead-of-bitwise-operators1Prevent misuse of logical operator instead of bitwise operatorssharptooth2009-06-11T10:43:33Z2009-06-11T11:28:47Z
<p>In C++ it's possible to use a logical operator where a biwise operator was intended:</p>
<pre><code>int unmasked = getUnmasked(); //some wide value
int masked = unmasked & 0xFF; // izolate lowest 8 bits
</code></pre>
<p>the second statement could be easily mistyped:</p>
<pre><code>int masked = unmasked && 0xFF; //&& used instead of &
</code></pre>
<p>This will cause incorrect behaviour - <code>masked</code> will now be either 0 or 1 when it is inteded to be from 0 to 255. And C++ will not ever complain.</p>
<p>Is is possible to design code in such a way that such errors are detected at compiler level?</p>
http://stackoverflow.com/questions/980438/prevent-misuse-of-logical-operator-instead-of-bitwise-operators/980450#9804502Answer by Neil Butterworth for Prevent misuse of logical operator instead of bitwise operatorsNeil Butterworth2009-06-11T10:47:16Z2009-06-11T10:47:16Z<p>Both operators represent valid operations on integers, so I don't see any way of detecting a problem. How is the compiler supposed to know which operation you really wanted?</p>
http://stackoverflow.com/questions/980438/prevent-misuse-of-logical-operator-instead-of-bitwise-operators/980451#9804513Answer by unwind for Prevent misuse of logical operator instead of bitwise operatorsunwind2009-06-11T10:47:24Z2009-06-11T10:47:24Z<p>This is a bit <a href="http://uncyclopedia.wikia.com/wiki/Captain%5FObvious" rel="nofollow">Captain Obvious</a>, but you could of course apply <a href="http://en.wikipedia.org/wiki/Encapsulation%5F%28computer%5Fscience%29" rel="nofollow">encapsulation</a> and just hide the bitmask inside a class. Then you can use operator overloading to make sure that the boolean <code>operator&&()</code> as you see fit.</p>
<p>I guess that a decent implementation of such a "safe mask" need not be overly expensive performance-wise, either.</p>
http://stackoverflow.com/questions/980438/prevent-misuse-of-logical-operator-instead-of-bitwise-operators/980473#9804732Answer by Daniel Daranas for Prevent misuse of logical operator instead of bitwise operatorsDaniel Daranas2009-06-11T10:53:45Z2009-06-11T11:14:02Z<p>Ban in your coding standards the direct use of any bitwise operations in an arbitrary part of the code. Make it mandatory to <strong>call a function</strong> instead.</p>
<p>So instead of:</p>
<pre><code>int masked = unmasked & 0xFF; // izolate lowest 8 bits
</code></pre>
<p>You write:</p>
<pre><code>int masked = GetLowestByte(unmasked);
</code></pre>
<p>As a bonus, you'll get a code base which doesn't have dozens of error prone bitwise operations spread all over it.</p>
<p>Only in one place (the implementation of <code>GetLowestByte</code> and its sisters) you'll have the actual bitwise operations. Then you can read these lines two or three times to see if you blew it. Even better, you can unit test that part.</p>
http://stackoverflow.com/questions/980438/prevent-misuse-of-logical-operator-instead-of-bitwise-operators/980586#9805861Answer by markh44 for Prevent misuse of logical operator instead of bitwise operatorsmarkh442009-06-11T11:28:47Z2009-06-11T11:28:47Z<p>In some instances you might get a compiler warning (I wouldn't expect one in your example though). A tool like lint might be able to spot possible mistakes.</p>
<p>I think the only way to be sure is to define your coding standards to make the difference between the two operators more obvious - something like:</p>
<pre><code>template<typename T>
T BitwiseAnd( T value, T mask ) { return value & mask; }
</code></pre>
<p>and ban the bitwise operators & and |</p>