Most crucial elements in a light-weight C++ coding standard - Stack Overflow
most recent 30 from stackoverflow.com
2009-12-17T19:25:57Z
http://stackoverflow.com/feeds/question/242728
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard
22
Most crucial elements in a light-weight C++ coding standard
R.A
2008-10-28T10:03:22Z
2009-12-06T03:04:50Z
<p>I've been involved in developing coding standards which were quite elaborate. My own experience is that it was hard to enforce if you don't have proper processes to maintain it and strategies to uphold it.</p>
<p>Now I'm working in, and leading, an environment even less probable to have processes and follow-up strategies in quite a while. Still I want to uphold some minimum level of respectable code. So I thought I would get good suggestions here, and we might together produce a reasonable light-weight subset of the most important coding standard practices for others to use as reference.</p>
<p>So, to emphasize the essence here:</p>
<h2> <strong>What elements of a C++ coding standard are the most crucial to uphold?</strong></h2>
<ul>
<li><h2>Answering/voting rules</h2>
<ul>
<li><p>1 candidate per answer, preferably with a <strong>brief</strong> motivation.</p></li>
<li><p><strong>Vote down</strong> candidates which focuses on style and subjective formatting guidelines. This is not to indicate them as unimportant, only that they are less relevant in this context. </p></li>
<li><p><strong>Vote down</strong> candidates focusing on how to comment/document code. This is a larger subject which might even deserve its own post.</p></li>
<li><p><strong>Vote up</strong> candidates that clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.</p></li>
<li><p><strong>Don't cast your vote</strong> in any direction on candidates you are uncertain about. Even if they sound reasonable and smart, or on the contrary "something surely nobody would use", your vote should be based on clear understanding and experience.</p></li>
</ul></li>
</ul>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242734#242734
4
Answer by unwind for Most crucial elements in a light-weight C++ coding standard
unwind
2008-10-28T10:06:51Z
2008-10-28T10:44:53Z
<p>If the toolchain in use (or projected use) has an inefficient implementation of <i>exceptions</i>, it might be wise to avoid their use. I've worked under such conditions.</p>
<p>Update: <a href="http://www.caravan.net/ec2plus/rationale.html" rel="nofollow">here</a> is someone else's rationale for "Embedded C++", which seems to exclude exceptions. It makes the following points:</p>
<ul>
<li>It is difficult to estimate the time between when an exception has occurred and control has passed to a corresponding exception handler. </li>
<li>It is difficult to estimate memory consumption for exception handling. </li>
</ul>
<p>There is more elaborate text on that page, I didn't want to copy it all. Plus, it's 10 years old so it might be of no use any longer, which is why I included the part about the toolchain. Perhaps that should also read "if memory is not considered a major problem", and/or "if predictable real-time response is not required", and so on.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242754#242754
4
Answer by Jasper Bekkers for Most crucial elements in a light-weight C++ coding standard
Jasper Bekkers
2008-10-28T10:14:18Z
2008-10-28T10:14:18Z
<p>Method and variable names in a common naming scheme for consistency; I don't tend to be bother much by anything else while reading source.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242755#242755
-1
Answer by Kenny for Most crucial elements in a light-weight C++ coding standard
Kenny
2008-10-28T10:15:02Z
2008-10-28T10:15:02Z
<p>No tabs (allows better use of external/other tools) and a fixed spaces inserted for tabs.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242815#242815
-1
Answer by Frederik Slijkerman for Most crucial elements in a light-weight C++ coding standard
Frederik Slijkerman
2008-10-28T10:35:04Z
2008-10-28T10:35:04Z
<p>Curly braces required if you have more than one step of indentation:</p>
<pre><code>if (bla) {
for (int i = 0; i < n; ++i)
foo();
}
</code></pre>
<p>This helps to keep indentation in line with how the compiler sees the code.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242816#242816
29
Answer by Ferruccio for Most crucial elements in a light-weight C++ coding standard
Ferruccio
2008-10-28T10:35:18Z
2008-10-28T10:35:18Z
<p>Keep functions to a reasonable size. Personally, I like to keep functions under 25 lines. Readability is enhanced when you can take a function in as a unit rather than having to scan up and down trying to figure out how it works. If you have to scroll to read it, it makes matters even worse.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242821#242821
11
Answer by Frederik Slijkerman for Most crucial elements in a light-weight C++ coding standard
Frederik Slijkerman
2008-10-28T10:36:48Z
2008-10-28T10:36:48Z
<p>Only trivial use of the ? : operator, i.e.</p>
<pre><code>float x = (y > 3) ? 1.0f : -1.0f;
</code></pre>
<p>is ok, but this is not:</p>
<pre><code>float x = foo(2 * ((y > 3) ? a : b) - 1);
</code></pre>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242827#242827
-4
Answer by Frederik Slijkerman for Most crucial elements in a light-weight C++ coding standard
Frederik Slijkerman
2008-10-28T10:38:15Z
2008-10-28T10:38:15Z
<p>Sort functions in class declarations and definitions by name. This makes it easier to locate them in the .cpp file. Also, it frees your mind because you don't have to think about where to put your new function.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242845#242845
27
Answer by Ferruccio for Most crucial elements in a light-weight C++ coding standard
Ferruccio
2008-10-28T10:43:59Z
2008-10-28T10:43:59Z
<p>Make sure that your compiler's warning level is set high enough (/Wall preferably) so that it will catch silly mistakes like:</p>
<pre><code>if (p = 0)
</code></pre>
<p>when you really meant</p>
<pre><code>if (p == 0)
</code></pre>
<p>so that you don't need to resort to even sillier tricks like:</p>
<pre><code>if (0 == p)
</code></pre>
<p>which degrade the readability of your code.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242849#242849
27
Answer by Dustin Getz for Most crucial elements in a light-weight C++ coding standard
Dustin Getz
2008-10-28T10:45:20Z
2008-10-28T10:45:20Z
<p><a href="http://en.wikipedia.org/wiki/Assert#Usage" rel="nofollow">assert</a> all assumptions, including temporary assumptions, like unimplemented behavior. assert function entry and exit conditions if nontrivial. assert all nontrivial intermediate states. your program should never crash without an assert failing first. you can customize your assert mechanism to ignore future occurances.</p>
<blockquote>
<p>Use error-handling code for conditions you expect to occur; use assertions for conditions that should never occur. Error handling typically checks for bad input data; assertions check for bugs in the code.</p>
<p>If error-handling code is used to address an anomalous condition, the error handling will enable the program to respond to the error gracefully. If an assertion is fired for an anomalous condition, the corrective action is not merely to handle an error gracefully—the corrective action is to change the program's source code, recompile, and release a new version of the software. A good way to think of assertions is as executable documentation—you can't rely on them to make the code work, but they can document assumptions more actively than program-language comments can [1].</p>
</blockquote>
<ol>
<li>McConnell, Steve. Code Complete, Second Edition. Microsoft Press © 2004. Chapter 8 - Defensive Programming</li>
</ol>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242859#242859
19
Answer by xtofl for Most crucial elements in a light-weight C++ coding standard
xtofl
2008-10-28T10:48:39Z
2008-10-28T10:48:39Z
<p>Curly braces for any control statement. (Thanks to own experience and reinforced by reading Code Complete v2):</p>
<pre><code>// bad example - what the writer wrote
if( i < 0 )
printf( "%d\n", i );
++i; // this error is _very_ easy to overlook!
// good example - what the writer meant
if( i < 0 ) {
printf( "%d\n", i );
++i;
}
</code></pre>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242879#242879
52
Answer by Aardvark for Most crucial elements in a light-weight C++ coding standard
Aardvark
2008-10-28T10:58:49Z
2008-10-28T14:33:44Z
<p>Prefer <a href="http://en.wikipedia.org/wiki/Resource_acquisition_is_initialization" rel="nofollow">RAII</a>.</p>
<p>STL's auto (and shared in boost & C++0x) pointers may help.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/242886#242886
32
Answer by Aardvark for Most crucial elements in a light-weight C++ coding standard
Aardvark
2008-10-28T11:00:51Z
2008-10-28T11:00:51Z
<p>Use references instead of pointers where possible. This prevents constant defensive NULL checks.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243059#243059
7
Answer by Steve Fallows for Most crucial elements in a light-weight C++ coding standard
Steve Fallows
2008-10-28T12:17:32Z
2008-10-28T12:17:32Z
<p>Use a lint tool - i.e. PC-Lint. This will catch many of the 'structural' coding guideline issues. Meaning things that read to actual bugs rather than style/readability issues. (Not that readability is not important, but it is less so than actual errors).</p>
<p>Example, rather than requiring this style:</p>
<pre><code>if (5 == variable)
</code></pre>
<p>As a way of preventing the 'unintended assignment' bug, let lint find it.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243143#243143
2
Answer by xtofl for Most crucial elements in a light-weight C++ coding standard
xtofl
2008-10-28T12:47:56Z
2008-10-28T12:47:56Z
<p>Whatever guidelines, make it very <strong>easy</strong> to recognize applicability: the less choice you have, the less time you loose choosing. And the easier it becomes to brainparse the code.</p>
<p>Examples of 'hard to recognize':</p>
<ul>
<li>No braces if only one line in the conditional body</li>
<li>Use K&R brace placement for namespaces, but put brace underneath conditions in function definition code</li>
<li>...</li>
</ul>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243149#243149
45
Answer by xtofl for Most crucial elements in a light-weight C++ coding standard
xtofl
2008-10-28T12:49:35Z
2008-10-28T20:04:43Z
<p>Use <code>const</code> identifiers by default. They provide guarantees for the reader/maintainer, and are way easier to build in than to insert afterwards.</p>
<p>Both member variables and methods would be declared <code>const</code>, as well as function arguments. <code>const</code> member variables enforce proper use of the initializer list.</p>
<p>A side-effect of this rule: avoid methods with side-effects.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243213#243213
5
Answer by Luc Hermitte for Most crucial elements in a light-weight C++ coding standard
Luc Hermitte
2008-10-28T13:08:33Z
2008-10-28T13:08:33Z
<p>Forbid <code>t[i]=i++;</code> <code>f(i++,i);</code>, and so on as there is no (portable) guarantees regarding what is executed first.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243214#243214
41
Answer by paercebal for Most crucial elements in a light-weight C++ coding standard
paercebal
2008-10-28T13:09:16Z
2009-08-29T21:00:26Z
<h2>Use C++ casts instead of C casts</h2>
<p>use:</p>
<ul>
<li><code>static_cast</code></li>
<li><code>const_cast</code></li>
<li><code>reinterpret_cast</code></li>
<li><code>dynamic_cast</code></li>
</ul>
<p>but never C-style casts.</p>
<p><strong>How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.</strong></p>
<p>Each cast has limited powers. E.g., if you want to remove a const (for whatever reason), <code>const_cast</code> won't change the type at the same time (which could be a bug difficult to find).</p>
<p>Also, this enables a reviewer to search for them and then, the coder to justify them if needed.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243233#243233
18
Answer by Luc Hermitte for Most crucial elements in a light-weight C++ coding standard
Luc Hermitte
2008-10-28T13:15:04Z
2008-10-28T14:33:18Z
<p>Side note: Do not impose SESE (<em>Single Entry Single Exit</em>) (i.e. do not forbid more than one <code>return</code>, the use of <code>break</code>/<code>continue</code>/...)</p>
<p>In C++, this is an utopia as <code>throw</code> is another return point.
SESE had two advantages in C and exception-less languages:</p>
<ul>
<li>the deterministic release of resources that is now neatly handled by the RAII idiom in C++,</li>
<li>making functions easier to maintain, that should not be a concern as the functions <strong>must</strong> be kept short (as specified by the rule of "one function, one responsibility")</li>
</ul>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243238#243238
26
Answer by paercebal for Most crucial elements in a light-weight C++ coding standard
paercebal
2008-10-28T13:16:39Z
2008-10-28T14:06:06Z
<h2>Use vector and string instead of C-style arrays and char *</h2>
<p>Use <strong>std::vector</strong> whenever you need to create a buffer of data, even if the size is fixed.</p>
<p>Use <strong>std::string</strong> whenever you need to have a string.</p>
<p><strong>How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?</strong></p>
<p><strong>std::vector:</strong> The user of a vector can always find its size, and the vector can be resized if needed. It can even be given (through the (&(myVector[0])) notation) to a C API. Of course, the vector will clean after itself.</p>
<p><strong>std::string:</strong> Almost the same reasons above.And the fact it will always be correctly initialized, that it can't be overrun, that it will handle modifications gracefully, like concatenations, assignation, etc, and in a natural way (using operators instead of functions)</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243255#243255
5
Answer by paercebal for Most crucial elements in a light-weight C++ coding standard
paercebal
2008-10-28T13:19:36Z
2008-10-28T14:24:12Z
<h2>Never use structs without proper constructors</h2>
<p>structs are legal C++ constructs, used to aggregate data together. Still, the data should be always properly initialized.</p>
<p>All C++ structs should have at least a default constructor, which will set its aggregated data to default values.</p>
<pre><code>struct MyStruct // BAD
{
int i ; bool j ; char * k ;
}
struct MyStruct // GOOD
{
MyStruct() : i(0), j(true), k(NULL) : {}
int i ; bool j ; char * k ;
}
</code></pre>
<p>And if they are usually initialized in some way, provide a constructor to enable the user to avoid a C-style struct initialization:</p>
<pre><code>MyStruct oMyStruct = { 25, true, "Hello" } ; // BAD
MyStruct oMyStruct(25, true, "Hello") ; // GOOD
</code></pre>
<p><strong>How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?</strong></p>
<p>Having struct without a proper constructor leaves the user of this struct the task of initializing it. So, the following code will be copy pasted from function to function:</p>
<pre><code>void doSomething()
{
MyStruct s = { 25, true, "Hello" } ;
// Etc.
}
void doSomethingElse()
{
MyStruct s = { 25, true, "Hello" } ;
// Etc.
}
// Etc.
</code></pre>
<p>Which means that, in C++, if you need to add a field in the struct, or change the order of the internal data, you have to go through all these initializations to verify each is still correct. With a proper constructor, modifying the internals of the structs is decoupled from its use.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243256#243256
2
Answer by Luc Hermitte for Most crucial elements in a light-weight C++ coding standard
Luc Hermitte
2008-10-28T13:19:38Z
2008-10-28T13:19:38Z
<p>A point should be dedicated to explain the difference between value semantics and entity semantics. It could provide the typical code snippets about how copy is handled is the various cases.</p>
<p>See also <a href="http://stackoverflow.com/questions/214891/checklist-for-writing-copy-constuctor-and-assignment-operator-in-c#214966">Checklist for writing copy constuctor and assignment operator in C++</a></p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243275#243275
3
Answer by Luc Hermitte for Most crucial elements in a light-weight C++ coding standard
Luc Hermitte
2008-10-28T13:25:40Z
2008-10-28T13:25:40Z
<p>Public inheritance must model The Liskov Substitution Principle (LSP).</p>
<p>Code reuse/import without substituability must be implemented with private inheritance when a very strong coupling makes sense, or with aggregation otherwise.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243281#243281
7
Answer by marijne for Most crucial elements in a light-weight C++ coding standard
marijne
2008-10-28T13:26:52Z
2008-10-28T13:26:52Z
<p>Don't add types or functions to the global namespace.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243285#243285
1
Answer by paercebal for Most crucial elements in a light-weight C++ coding standard
paercebal
2008-10-28T13:28:01Z
2008-10-28T14:20:13Z
<h2>Beware of C API</h2>
<p>The C API can be very efficient, but will need exposed raw data (i.e. pointers, etc.), which won't help the safety of the code. Use existing C++ API instead, or encapsulate the C API with C++ code.</p>
<p>e.g.:</p>
<pre><code>// char * d, * s ;
strcpy(d, s) ; // BAD
// std::string d, s ;
d = s ; // GOOD
</code></pre>
<h2>Never use strtok</h2>
<p>strtok is not reentrant. Which means that if one strtok is started while another is not ended, one will corrupt the "internal data" of the other.</p>
<p><strong>How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?</strong></p>
<p>Using C API means using raw types, which can lead to interesting bugs like buffer overflow (and potential stack corruption) when a sprintf goes too far (or string cropping when using snprintf, which is a kind of data corruption). Even when working on raw data, malloc can be easily abused, as shown by the following code:</p>
<pre><code>int * i = (int *) malloc(25) ; // Now, I BELIEVE I have an array of 25 ints!
int * j = new int[25] ; // Now, I KNOW I have an array of 25 ints!
</code></pre>
<p>Etc. etc..</p>
<p>As for strtok: C and C++ are stack-enabled languages, that enable to user to not care about what functions are above his own on the stack, and what functions will be called below his own on the stack. strtok removes this freedom of "not caring"</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243294#243294
20
Answer by paercebal for Most crucial elements in a light-weight C++ coding standard
paercebal
2008-10-28T13:30:30Z
2008-10-28T14:09:47Z
<h2>Premature optimization is the root of all evil</h2>
<p>Write safe and correct code first.</p>
<p>Then, if you have performance problems, and if your profiler told you the code is slow, you can try to optimize it.</p>
<p>Never believe you will optimize snippets of code better than the compiler.</p>
<p>When looking for optimizations, study the algorithms used, and potentially better alternatives.</p>
<p><strong>How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?</strong></p>
<p>Usually, "optimized" (or supposedly optimized) code is a lot less clearer, and tend to express itself through raw, near-the-machine way, instead of a more business-oriented way. Some optimizations rely of switchs, if, etc., and then will be more difficult to test because of multiple code paths.</p>
<p>And of course, optimization before profiling often lead to zero performance gain.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243299#243299
0
Answer by gbjbaanb for Most crucial elements in a light-weight C++ coding standard
gbjbaanb
2008-10-28T13:31:06Z
2008-11-01T15:58:22Z
<p>The best standards are those that are small and tightly focussed on what really matters to making quality code. They do not try to teach coding, they do not try to force a particular way of coding. They generally stick to consistency features and subjective reviews (eg, if the rest of your team think a piece of code is readable, fits with the consistency rules, and is commented, then its always going to be good code)</p>
<p>So to re-emphasise: consistency - naming convention, whitespace management, commenting blocks, directory structure. Nothing else <em>really</em> matters</p>
<p>Edit for Dustin:
the big problem with standards comes with the exceptions. If you have a standard that says "1 statement per line", you cannot write the following made-up example:</p>
<pre><code>SetColText(1,"col1"); SetColWidth(1, 10);
SetColText(2,"col1"); SetColWidth(2, 10);
...
SetColText(9,"col1"); SetColWidth(9, 10);
</code></pre>
<p>But I'd say that was more readable, and therefore less error-prone that splitting them up. (I'm sure you can come up with better examples).</p>
<p>This is my point - telling people how to write code, and how to format it to strict rules is always going to fall over in ways and places you didn't anticipate. So its far better to trust your coders to do it right after enforcing a few rules. If they have a few rules to follow, they will write good, disciplined code so you won't need the rest of the crappy rules.</p>
<p>You see some standards that go on for pages and pages. (The Philips C# one is 48 fecking pages long!)</p>
<p>So, given that you have a team of quality coders, what do you need to do to make it easier to work with their code? the answer is always consistency of 'where' they put the code, not how they write it. eg. you always have a bin, and obj directory in your project is a good standard. You can pick up any project and know where things are .. unlike someone building all his binaries in his c:/mybin directory because its easier for him.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243333#243333
21
Answer by paercebal for Most crucial elements in a light-weight C++ coding standard
paercebal
2008-10-28T13:35:53Z
2008-10-28T14:31:24Z
<h2>Know who is owner of <em>that</em> memory.</h2>
<ul>
<li>create objects on stack as much as possible (no useless new)</li>
<li>Avoid transfer of ownership unless really needed</li>
<li>Use RAII and smart pointers</li>
<li>If transfer of ownership is mandated (without smart pointers), then, document clearly the code (the functions should have a non-ambiguous name, always using the same name pattern, like "char * allocateMyString()" and "void deallocateMyString(char * p)".</li>
</ul>
<p><strong>How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?</strong></p>
<p>Not having a clear memory ownership philosophy leads to interesting bugs or memory leaks, and time lost wondering if the char * returned by this function should be deallocated by the user, or not, or given back to a special deallocation function, etc..</p>
<p>As much as possible, the function/object allocating the memory must be the function/object deallocating it.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243356#243356
1
Answer by paercebal for Most crucial elements in a light-weight C++ coding standard
paercebal
2008-10-28T13:41:07Z
2009-08-29T20:56:53Z
<h2>Limit the types you use</h2>
<p>If you need to use an integer type, choose one and keep it. This will avoid the problems associated with mixing of short, int, long, etc.. types.</p>
<pre><code>// BAD
int i ;
long j ;
short k ;
// GOOD (if you choose the "int" as integer)
int i ;
int j ;
int k ;
</code></pre>
<p>The same goes for real types: Choose one (e.g. double), and do not use another.</p>
<p>Etc.</p>
<p>Note: There is still the issue of signed/unsigned, which can't always be avoided, and the fact STL use its own integer types (i.e. std::vector::size_type), but all the remaining code should not mixing.</p>
<p>Note 2: You could use typedef to "choose" your prefered type for signed integer and real numbers. This would enable a low-cost change if needed.</p>
<p><strong>How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?</strong></p>
<p>Some bugs are created by comparing unsigned type to signed types, mysterious loss of precision, or integer under/overflow.</p>
<p>Compilers usually send warnings at compile time, but then, the usually answer is to "cast" the warning away, which can help hide the error.</p>
<h3>Edit</h3>
<p>plinth made an useful comment I'll copy paste here:</p>
<blockquote>
<p>Having written a lot of code that has to interact with things at the hardware level, I can't say much for this guideline. For this level of work, I prefer the integral types to be abstracted to names that include the precision (ie, int16, uint16, int32, uint32, etc.) – plinth Aug 18 at 20:50</p>
</blockquote>
<p>plinth is right, of course. Sometimes you have to deal with int16, uint8 and other "precisely defined" types.</p>
<p>This does not invalidate the post above, only complete it.</p>
<p>The source of the bug is mixing different types (converting unsigned char into int, for example), thus, this kind of mixing must be avoided. The following rules thus apply:</p>
<ul>
<li>Choose one generic integral type (e.g. int), and stick to it when dealing with generic integers (the same can be said about reals)</li>
<li>If (and only if) you need exact types (like uint8 or int16), use them</li>
<li>Never mix different types.</li>
<li>If you <strong>really</strong> must mix different types, then be very very cautious.</li>
</ul>
<p>Below is an example of code that would break:</p>
<pre><code>void * doAllocate(uint32 i)
{
// try to allocate an array of "i" integers and returns it
}
void doSomething()
{
uint32 i0 = 225 ;
int8 i1 = 225 ; // Oops...
doAllocate(i0) ; // This will try to allocate 255 integers
doAllocate(i1) ; // This will TRY TO allocate 4294967265
// integers, NOT 225
}
</code></pre>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/243576#243576
8
Answer by peterchen for Most crucial elements in a light-weight C++ coding standard
peterchen
2008-10-28T14:40:58Z
2008-10-29T22:52:05Z
<p><strong><a href="http://en.wikipedia.org/wiki/Principle_of_least_astonishment" rel="nofollow">Principle of least surprise</a></strong>.</p>
<p>Maybe it's not the "flavor" of rules you are looking for, but I'd definitely put it first. </p>
<p>It is not only the root, reason and sanity check for all the boring stuff like formatting and commenting guidelines, but - to me more importantly - puts the emphasis on the code being read and understood, rather than just compiled. </p>
<p>It also covers the only reasonable code quality measure I have ever encountered - <a href="http://www.osnews.com/story/19266/WTFs_m" rel="nofollow">WTF's per minute</a>. </p>
<p>I'd use that first point to stress the importance and value of clear, consistent code, and to motivate the following items in the coding standard.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/244484#244484
7
Answer by Dustin Getz for Most crucial elements in a light-weight C++ coding standard
Dustin Getz
2008-10-28T19:18:53Z
2008-10-28T19:18:53Z
<p>Prefer standard-compliant code. Prefer to use the standard libraries.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/247813#247813
1
Answer by Dustin Getz for Most crucial elements in a light-weight C++ coding standard
Dustin Getz
2008-10-29T18:10:11Z
2009-12-06T03:04:50Z
<p>I think a coding standard document isn't the solution to this problem. The solution is to motivate your labor to learn/care about the human side of coding - "code for people first and computers last".</p>
<p>Obviously it is not possible to just fire the ones that don't care - but a standard document isn't going to help them much, either.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/247854#247854
0
Answer by tim for Most crucial elements in a light-weight C++ coding standard
tim
2008-10-29T18:23:13Z
2008-10-29T21:21:21Z
<p>I suggest just requiring developers to read a bunch of guidelines, and the effective C++ and more effective C++ books by Meyers. </p>
<p>If you want lightweight, you are going to have to rely on common sense and a common ideal. </p>
<p>Code reviews help enforce this as well.</p>
<p>To keep it lightweight I would avoid a document and code police. Praise good code publicly.</p>
<p>EDIT - I started with a comment here, but will put it in the response for ease of viewing:</p>
<p>reviews done correctly will do wonders - but you can't allow reporting hierarchies into the review and no statistics with people's names can be on the review results. </p>
<p>Make sure to keep the document small and be sure to give REASONS for the "rule"/guideline. Without that then you ae just demanding blind obedience. With rationale and reasons you educate so that actually posting/writing the "rule" becomes unneeded. (as the concept will be internalized)</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/266689#266689
4
Answer by twokats for Most crucial elements in a light-weight C++ coding standard
twokats
2008-11-05T21:12:13Z
2008-11-05T21:12:13Z
<p>Always, always, always do proper data member initialization on object construction.</p>
<p>I ran into a problem where an object constructor was relying on some "default" initialization for its data members. Building the code under two platforms (Windows/Linux) gave different results and a hard-to-find memory bug. The result was that a data member was not initialized in the constructor, and used before it was initialized. On one platform (Linux), the compiler initialized it to what the code writer thought appropriate default. On Windows, the value was initialized to something - but garbage. On use of the data member, everything went haywire. Once the initialization was fixed - no more problem.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/374244#374244
1
Answer by jalf for Most crucial elements in a light-weight C++ coding standard
jalf
2008-12-17T11:10:02Z
2008-12-17T11:10:02Z
<p>Probably a no-brainer, but nevertheless an important rule:</p>
<p>Avoid undefined behavior.</p>
<p>There's an awful lot of it in C++, and it's probably impossible to write a nontrivial application that doesn't depend on it somehow, but the general rule should still be "undefined behavior is bad". (Because sadly there are C++ programmers out there who feels that "it works on my machine/compiler" is good enough).</p>
<p>If you have to rely on it, make it clear to everyone what, why, where and how.</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/374289#374289
1
Answer by jussij for Most crucial elements in a light-weight C++ coding standard
jussij
2008-12-17T11:35:13Z
2008-12-17T11:35:13Z
<p>Make sure destructors are defined as <strong><em>virtual</em></strong>:</p>
<pre><code> class GoodClass {
public:
GoodClass();
virtual ~GoodClass()
};
class BadClass {
public:
BadClass();
~BadClass()
};
</code></pre>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/1262075#1262075
3
Answer by fnieto for Most crucial elements in a light-weight C++ coding standard
fnieto
2009-08-11T18:15:10Z
2009-10-24T09:33:31Z
<p>Avoid using generated copy constructor and operator= by default. </p>
<ul>
<li>If you want your object to be copiable.
<ul>
<li>If every attribute can be trivially copied, comment clearly you are using implicit copy constructor and operator= deliberately.</li>
<li>Otherwise, write your own constructors, using the initialization field to initialize attributes and following the header order (which is the real construction order).</li>
</ul></li>
<li>If still don't know (<em>default option</em>) or you think you dont want to copy the objects of a certain class, declare its copy constructor and operator= as private. This way the compiler will let you know when you are doing something you don't want to do.</li>
</ul>
<pre>
class foo
{
//...
private:
foo( const foo& );
const foo& operator=( const foo& );
};
</pre>
<p>Or in a <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/utility/utility.htm#Class%5Fnoncopyable" rel="nofollow">cleaner way</a> if you are using boost:</p>
<pre>
class foo : private boost::noncopyable
{
...
};
</pre>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard/1296864#1296864
0
Answer by ZeroCool for Most crucial elements in a light-weight C++ coding standard
ZeroCool
2009-08-18T22:14:40Z
2009-08-18T22:14:40Z
<p>The Art of Computer Programming Tome{1,2,3}</p>