1
vote
6answers
126 views
Would VS2008 c++ compiler optimize the following if statement?
if (false == x) { ...}
as opposed to:
if (!x) { ... }
and
if (false == f1()) { ...}
as opposed to:
if (!f1()) { ... }
I think the if(false == ... version is more readable. Do you agree, or …
0
votes
6answers
104 views
What kind of grammar do you use for comments? [closed]
For example, for a comment describing
mq_open() {
}
Do you use the imperative
// open a message queue
or third person?
// opens a message queue
2
votes
1answer
35 views
Are DefType statments considered Bad Practice?
I want your thoughts on why or (why not) this statement should (or should not) be used.
Since this is a little subjective, here is my criteria:
Upvotes given for concrete reasons (as opposed to …
0
votes
5answers
43 views
Plural/singular naming in methods returning lists.
it seems a trivial point, until you realize that you need consistency. Not being a native English speaker, I prefer to ask both for grammar and for style. Which one must be preferred among these …
17
votes
22answers
849 views
What should I do to improve my code/style of programming?
I am sure you guys know me. I am the person from your offshore team whose code puts you off and at times makes you pull your hair (bcoz you can't pull mine). My programming concepts are quite okay …
12
votes
45answers
2k views
What do you do to write better code?
What do you do to write better code?
Concentrate more? Read more books?
My method is reading, asking.
What is your method of writing better code?
248
votes
152answers
20k views
What are Code Smells? What is the best way to correct them?
OK, so I know what a code smell is, and the Wikipedia Article is pretty clear in its definition:
In computer programming, code smell is
any symptom in the source code of a
computer program …
0
votes
6answers
129 views
include boost header file using “” or <>
Why tuple documentation for example says to use:
#include "boost/tuple/tuple.hpp"
and not
#include <boost/tuple/tuple.hpp>
I know that it's almost not probably my code will have also …
4
votes
11answers
236 views
C++ good coding style - always fully qualify library types?
What is generally considered good coding style in C++ where you use types from the standard library? For example, if I have a using namespace std; directive would you still expect to see library types …
0
votes
5answers
146 views
type* var Vs. type *var - which one is better? [closed]
Possible Duplicates:
C++: Asterisks and Pointers
In C, why is the asterisk before the variable name, rather than after the type?
In C++ you can declare a pointer by placing the asterisk at …
2
votes
12answers
262 views
To iterate or to use a counter, that is the question
Whenever someone starts using the STL and they have a vector, you usually see:
vector<int> vec ;
//... code ...
for( vector<int>::iterator iter = vec.begin() ;
iter != vec.end() ;
…
0
votes
3answers
149 views
Style of programming [closed]
Hi, could anyone comment on my style (I know that this is c ver of doing things but that was my task to do) - just learning c++ and I would like to write in good style - (comments in fnc removed):
…
4
votes
6answers
378 views
Is Google’s “Go” language multi-value return statement an alternative to exceptions?
It seems to me Google's alternatives to exceptions are
GO: multi-value return "return val, err;"
GO, C++: nil checks (early return)
GO, C++: "handle the damn error" (my term)
C++: assert(expression) …
1
vote
13answers
196 views
Long code blocks inside if statements or for loops
This is a cross language question on coding style.
I have to work with a lot of code that has very long code blocks, sometimes hundreds of lines, inside if statements or for loops. The code is …
0
votes
1answer
22 views
PHP codesniffer - how to teach it to ignore white space?
I am using PHP CodeSniffer to check if my code complies to Zend standards.
80 chars per line is one of them. But I prefer to indent line with white spaces
and sniffer treat short lines with line …
