250
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 …
73
votes
99answers
17k views
What was the strangest coding standard rule that you were forced to follow?
When I asked this question I got almost always a definite yes you should have coding standards.
What was the strangest coding standard rule that you were ever forced to follow?
And by strangest I …
43
votes
30answers
2k views
Checking in of “commented out” code
Ok, here is something that has caused some friction at my current job and I really didn't expect it to. Organized in house software development is a new concept here and I have drawn up a first draft …
39
votes
15answers
2k views
What is a magic number, and why is it bad?
What is a magic number?
Why should it be avoided?
Are there cases where it's appropriate?
37
votes
31answers
3k views
Is there a valid reason for enforcing a maximum width of 80 characters in a code file, this day and age?
Seriously. On a 22" monitor, it only covers maybe a quarter of the screen. I need some ammo to axe down this rule.
Edit: I'm not saying that there shouldn't be a limit; I'm just saying, 80 characters …
32
votes
9answers
5k views
What open source C++ static analysis tools are available?
Java has some very good open source static analysis tools such as FindBugs, Checkstyle and PMD. Those tools are easy to use, very helpful, runs on multiple operating systems and free.
Commercial C++ …
23
votes
41answers
3k views
What “bad practice” do you do, and why?
Well, "good practice" and "bad practice" are tossed around a lot these days - "Disable assertions in release builds", "Don't disable assertions in release builds", "Don't use goto.", we've got all …
23
votes
32answers
2k views
When do you use the “this” keyword?
This may be a silly question, but I was curious how other people use the this keyword. I tend to use it in constructors but may also use it throughout the class in other methods. Some examples:
In …
22
votes
37answers
2k views
Most crucial elements in a light-weight C++ coding standard
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 …
22
votes
45answers
2k views
Is Programming Style important? How Important?
Last year I was troubleshooting a team member's code and it was lacking indents and comments. I was talking to him about it telling him it was not a good idea but he got offended. He was/is smarter …
21
votes
23answers
2k views
Should a project manager enforce coding standards?
Running a team of about 10 developers, mostly working in their own components, is it absolutely needed to force certain coding standards.
Example 1 in function names: perform_action vs …
20
votes
25answers
1k views
The “Should be easy for a junior developer to understand” argument
Does anyone actually think this is a good reason to "Dumb down" your code?
When a manager asks you to make your code simple (in terms of technology skills required to understand it) at the cost of …
18
votes
9answers
960 views
Why is it bad practice to call an eventhandler from code?
Say you have a menu item and a button that do the same task.
Why is it bad practice to put the code for the task into one control's action event and then make a call to that event from the other …
16
votes
4answers
1k views
Are there any coding standards for JavaScript?
What are the established coding standards for JavaScript?
16
votes
13answers
1k views
Why are try blocks expensive?
I've heard the advice that you should avoid try catch blocks if possible since they're expensive.
My question is specifically about the .NET platform: Why are try blocks expensive?
Summary of …
