Prevent misuse of logical operator instead of bitwise operators - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T03:05:41Z http://stackoverflow.com/feeds/question/980438 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/980438/prevent-misuse-of-logical-operator-instead-of-bitwise-operators 1 Prevent misuse of logical operator instead of bitwise operators sharptooth 2009-06-11T10:43:33Z 2009-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 &amp; 0xFF; // izolate lowest 8 bits </code></pre> <p>the second statement could be easily mistyped:</p> <pre><code>int masked = unmasked &amp;&amp; 0xFF; //&amp;&amp; used instead of &amp; </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#980450 2 Answer by Neil Butterworth for Prevent misuse of logical operator instead of bitwise operators Neil Butterworth 2009-06-11T10:47:16Z 2009-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#980451 3 Answer by unwind for Prevent misuse of logical operator instead of bitwise operators unwind 2009-06-11T10:47:24Z 2009-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&amp;&amp;()</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#980473 2 Answer by Daniel Daranas for Prevent misuse of logical operator instead of bitwise operators Daniel Daranas 2009-06-11T10:53:45Z 2009-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 &amp; 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#980586 1 Answer by markh44 for Prevent misuse of logical operator instead of bitwise operators markh44 2009-06-11T11:28:47Z 2009-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&lt;typename T&gt; T BitwiseAnd( T value, T mask ) { return value &amp; mask; } </code></pre> <p>and ban the bitwise operators &amp; and |</p>