vote up 101 vote down star
84

More specifically, what types of mistakes do you most commonly see in code from really green (inexperienced, not the Al Gore kind) programmers?

flag
4  
Perhaps it would be a good idea for users to add why these mistakes are wrong, just in case some of us (me) look at this page and feel like the community here have been watching me code for years. – EnderMB Oct 26 '08 at 2:22
2  
+1 for the Al Gore differentiation – Tim Büthe Jul 13 at 12:23

109 Answers

1 2 3 4 next
vote up 216 vote down
if (test) {
  return true;
}
else {
  return false;
}
link|flag
25  
Ofcourse this should be: bool result = false; if (test) { result = true; } else { result = false; } return result; // now go, get a napkin to wipe your screen... – EricSchaefer Nov 16 '08 at 14:49
71  
I've seen experienced developers doing this for clarity, or when they expect to have more there. – Uri Dec 9 '08 at 20:20
33  
"When they expect to have more there" means that they're not familiar with the concept of YAGNI. – Andy Lester May 20 at 16:44
31  
Thinking the posted code is clearer than "return test" is another sign of an inexperienced programmer. – Dour High Arch May 20 at 18:54
11  
Readability > Number of lines. It all depends on the exact code. If the 'test' variable is something like 'doesMeetCriteria' or 'isToad' then it may be ok to just return the value. When used properly there's no issue with this. – TJB May 20 at 19:10
show 23 more comments
vote up 154 vote down

This made me a sad panda

bool x = SomeMethod();

//Sometime later

string whatIsX = x.ToString().ToUpper();

if(whatIsX == "TRUE")
{
    //Do Stuff
}
link|flag
11  
Eew, just looking at that makes my toenails curl. – HS Oct 26 '08 at 9:54
74  
That's not 'inexperienced'... It's just horrible. – Ace Oct 31 '08 at 12:28
2  
ooooohhh... I have seen many ugly lines of code involving boolean logic, but this is by far the most... ineffective. – MasterPeter Apr 26 at 16:35
10  
Yeah, that's awful. I'm working with a Senior Developer who writes stuff like this. It's frustrating that he gets paid more than I do. :( – Greg D Apr 30 at 11:52
6  
What? He doesn't use UpperInvariant!!! – kentaromiura Jul 13 at 11:40
show 11 more comments
vote up 111 vote down
  • Writing too much code
  • Reinventing the wheel
  • Not closing/disposing/releasing resources
  • Not properly handling exceptions (smothering them/ignoring them)
  • Gratuitous overuse of ToString(), sometimes even on String objects!
  • Comparing boolean results directly to "true" and "false"
if (IsAManMan == true) { 
   Console.WriteLine("It's a MAN, man!");
}
link|flag
22  
Agree with everything but your last point. I prefer having explicit boolean comparisons whenever possible, it doesn't harm and is good practice, not having them just seems lazy. – Robert Gould Oct 26 '08 at 4:09
36  
If comparing Boolean results directly to "true" and "false" is a good practice, then why stop there? The equality operator returns another Boolean, so why not compare that? And its result? And so on? if((IsAManMan == true) == true) {...}, if(((IsAManMan == true) == true) == true) {...}, etc. – bk1e Oct 26 '08 at 4:31
21  
It's not necessarily bad practice; it's easier to pick out "if(foo == false)" than "if(!foo)". The exclamation mark can be missed easily. ... Having said that, I use "if(!foo)" myself, but I disagree that the above is bad practice. – Rob Howard Oct 26 '08 at 12:55
5  
Just for the record, ((object)someString).ToString() has the nice feature of converting nulls to an empty string, so it makes sense sometimes to use ToString() on (potentially) string objects. – DrJokepu Oct 29 '08 at 11:24
6  
@DrJokepu - No it doesn't, it causes a NullReferenceException. If you want to convert a potentially null string to an empty string then use the null coalescing operator, i.e. somestring ?? string.Empty. – Greg Beech May 20 at 16:41
show 11 more comments
vote up 110 vote down

OK, so I was bored ... an in truth, some of these only mean you are an OLD developer :)


If your code looks like it was written by a committee, you might be an inexperienced developer.

If you put comments on every other line of code, you might be an inexperienced developer.

If you have never spent more than 4 hours debugging something stupid and obvious, you might be an inexperienced developer.

If your code has nested goto statements, you might be an inexperienced developer.

If you still write in a language with “basic” in the name, you might be an inexperienced developer.

If you have never seen the sun rise and set and rise again while working on a project, you might be an inexperienced developer.

If you don’t have a religious opinion on software development, you might be an inexperienced developer.

If you use Thread.Sleep() to fix race conditions, you might be an inexperienced developer.

If you learn something new, then immediately apply it to EVERY PIECE OF FRACKING CODE YOU WRITE, you might be an inexperienced developer.

If you think you are too good to write unit tests for your code, you might be an inexperienced developer.

If you have not (yet) learned to despise Hungarian notation, you might be an inexperienced developer.

If you have learned to despise Hungarian, and still can’t intelligently argue why it should be used, you might be an inexperienced developer.

If you have to fix warnings to compile your code because the compiler treats more than 1000 warnings as an error, you might be an inexperienced developer.

If you think design patterns are the Holy Grail for software development, you might be an inexperienced developer. (Or a manager)

If you don’t have at least 15 books on programming that you have never read, you might be an inexperienced developer.

If you think you have never been guilty of all of the above, you ARE an inexperienced developer.

If you don’t know who David Ahl or the Beagle Bros are, you might be an inexperienced developer.

If you have never developed software on a team where everyone was smarter than you, you might be an inexperienced developer.

If your eight year old kid debugs your code, you might be an inexperienced developer.

If you can’t name at least 50 things wrong with the win32 API, you might be an inexperienced developer.

If you have never argued with a tester about a bug that is “by design”, you might be an inexperienced developer.

If you have never developed on a mainframe, you might be an inexperienced developer.

If you have never written anything that uses ASCII graphics, you might be an inexperienced developer.

If you have never tried to convince someone that C# is better than Java (or vice-versa), you might be an experienced developer.

If you can’t divide hex numbers in your head, you might be an inexperienced developer.

If you have never written an application that compiles out to a .com extension (or even know why you would want to), you might be an inexperienced developer.

If you have never written a fully functioning application that runs in less than 1k of memory, you might be an inexperienced developer.

If you don’t know the difference between 8080 assembler and 6502 assembler, you might be an inexperienced developer.

If you have never written software to create music on hardware that doesn’t have any type of sound processor, you might be an inexperienced developer.

If you have never been GRUE or WUMPUS hunting, you might be an inexperieced developer.

If you have never tried to improve "Eliza", you might be an inexperieced developer.

If you can’t relate to any of this, you might not be a developer.


/// ==== EDIT

I noticed a comment on the original question, why are some of these things wrong? Here are some (random) resources. They range from technically useful, to just history...

http://www.amazon.com/Emergent-Design-Evolutionary-Professional-Development/dp/0321509366

http://www.amazon.com/Design-Patterns-Explained-Perspective-Object-Oriented/dp/0321247140/ref=pd_bxgy_b_img_b

http://en.wikipedia.org/wiki/David_H._Ahl

http://www.boingboing.net/2006/01/17/dot-matrix-printer-m.html

http://www.humanclock.com/webserver.php (25k, but hey - it's a full webserver ...)

http://en.wikipedia.org/wiki/Beagle_Bros_Software

http://en.wikipedia.org/wiki/Grue_(monster)

http://en.wikipedia.org/wiki/Hunt_the_Wumpus

http://en.wikipedia.org/wiki/Eliza

http://www.joelonsoftware.com/articles/Wrong.html

http://blogs.msdn.com/oldnewthing/archive/2005/01/14/352949.aspx

http://www.albahari.com/threading/

http://blogs.msdn.com/jfoscoding/archive/2005/08/06/448560.aspx

http://msdn.microsoft.com/en-us/library/bb429476(VS.80).aspx

http://code.msdn.microsoft.com/sourceanalysis

http://www.nunit.org/index.php

Heh: http://images.tabulas.com/822/l/dilbert_actual_code.jpg

link|flag
5  
How do you nest gotos? – paperhorse Oct 26 '08 at 3:28
11  
+1 for Thread.Sleep() shudders – Rob Sanders Apr 30 at 23:44
12  
+1 for inexperienced programmers (and managers) thinking design patterns are the holy grail – AaronS May 20 at 19:02
10  
Oh man, I can't even divide decimal in my head. ;-) – Ferruccio May 21 at 12:31
4  
Many of these questions are about whether you were programming in the early 80s. But that's a long time ago. You could have entered the industry in 2000 and still be a very experienced developer (but please don't call yourself a "guru".) – finnw Jul 13 at 13:48
show 16 more comments
vote up 87 vote down

Using lots of global variables

link|flag
9  
I might go as far as saying overuse of Singletons is worse than overuse of globals. Or it could just be the guy who overdid singletons was a worse coder thant he guy who overused globals – Neil N May 20 at 18:54
11  
Neil, a Singleton is just a fancy name for a global object. – user9876 May 28 at 17:04
show 4 more comments
vote up 87 vote down

Letting the compiler do your testing - "it compiled, it's OK"

link|flag
1  
Indeed, this is a real sign of inexperience. – mafutrct Apr 30 at 12:57
5  
this is classic! this should have more votes. maybe people who use dynamic non-compiled languages just can't relate to this one, resulting in fewer up-votes. – que que May 20 at 19:25
2  
@que que: This is far worse in dynamic, non-compiled languages. The runtime hasn't even necessarily gone over all code-paths, like a static compiler would have had to. – Bernard May 21 at 3:45
2  
What's wrong with that? I set my compiler to treat warnings as errors, after all...</sarcasm> – Nathan Clark Jun 24 at 21:37
2  
In Haskell or CAML, it's true! – Dario Nov 5 at 18:45
vote up 73 vote down

Copying rather than reusing code.

Creating home-brew 'solutions' when framework solutions are available.

Code that doesn't bound-check, guard against generating exceptions, doesn't use exception handling, and is brittle.

(In my shop where testing is key) Not writing test code.

There are other tell-tale signs that aren't in code, of course.

link|flag
5  
Ugh. Point #1 should strike fear into the hearts of programmers everywhere. – jedidja Oct 26 '08 at 0:35
10  
Copying vs reusing is a tricky one. There are times when trying to generalize code enough to be reusable is far worse than just making a copy and tweaking it. – Grauenwolf May 20 at 18:42
2  
I wish I could upvote you 20 times for the first two points, particularly the second one. I have a friend who is constantly creating home-brew "solutions" and ignoring framework solutions. – Gregory Higley Jun 24 at 20:43
2  
I agree on your "solutions" point for production code. But when you want to learn more about how (or why) something works... the best way is to do it yourself. – Matthew Whited Jun 24 at 20:44
1  
I disagree on the second one. If you are on a short-term project in an unfamiliar framework it can make better economic sense to create home-brew solutions as this will often be much faster than learning that part of the framework. – finnw Jul 13 at 13:50
show 4 more comments
vote up 71 vote down

Oh, and this monstrosity: We had a junior programmer who used to do it quite regularly. If I ever am forced to work for a shop insane enough to incentivize based on lines-of-code produced, it'll be at the top of my toolbag:

for( int i = 0; i < 3; i++ ) {
    switch(i) {
    case 0:
        doZeroStuff();
        break;
    case 1:
        doOneStuff();
        break;
    case 2:
        doTwoStuff();
        break;
    }
}
link|flag
11  
I had one like this--it was a 16 port system and each port had it's own case. Funny thing is, each case was copy & paste except for the PORT NUMBER! – Bill K Oct 26 '08 at 3:41
2  
I can't begin to imagine what the rationale for writing this code is... – Max Howell Oct 26 '08 at 8:24
3  
Nice, the classic For-Switch paradigm! thedailywtf.com/Articles/Switched_on_Loops.aspx/… – Greg D Apr 30 at 12:54
7  
case 3: Break(); break; – Alterlife May 21 at 10:18
3  
That's pretty cool. So he can do a subset of all that crap just by changing the for loop. :-) – Nosredna Jun 24 at 20:41
show 15 more comments
vote up 58 vote down

Learning one hammer and then using it for all problems that it can handle, even if it is ill suited. For example, learning how to use a database and then using it for all data storage, even when a file would be more appropriate. Or, learning how to access files and then using them for all data storage, even when a database would be more appropriate. Or, learning about arrays and then using them for all data structures, even when hash tables would be more appropriate. Or, learning about hash tables and then using them for all data structures, even when arrays would be more appropriate.

link|flag
7  
Real Programmers know that all data structures are syntactic sugar for byte[] and that [StructLayout(LayoutKind.Explicit)] and [FieldOffset(n)] can help you port your precious libraries from Fortran. Real Programmers can write Fortran in any language! – Peter Wone Oct 26 '08 at 0:59
6  
No, real programmers need just a magnetized needle and a steady hand to work the disk platters but do you really want to go down this road? – Nouveau Oct 31 '08 at 15:19
9  
@Nouveau: Real programmers use butterflies. (xkcd.com/378) – user9876 May 28 at 17:08
6  
Listen XML is like violence. If you can't solve your problem with it - you're not using enough – PSU_Kardi Jun 24 at 22:37
3  
Most common manifestation: A programmer that just learned inheritance and realizes that everything in the universe is a special case of an Atom. – JohnFx Oct 9 at 16:40
show 8 more comments
vote up 55 vote down

Most of these seem like bad programmers rather than young ones.

In my experience young ones typically don't have the savvy of using some best practices and coding for maintainability - they usually want to show off their skills and brains rather than making code easy to read and maintain.

Writing bad code is not exclusive to young programmers.

link|flag
6  
"Writing bad code is not exclusive to young programmers." -- So true. I would like to believe that the young do it out of ignorance. Btw, this comment has nothing to do with the fact that I am only 22 :) – Vijay Dev Oct 26 '08 at 11:02
12  
LOL, And sadly, IMO people can be inexperienced even if they've been in the industry for 10+ years. Often, 10+ years of BAD experience is worse than none! – Dave Markle Oct 26 '08 at 14:47
show 2 more comments
vote up 55 vote down

The best of sign of inexperienced programmer is the one who constantly rushes headlong into the latest technology. This person wants to immediately apply any new trinket into the mission critical app they are working on. Incidentally, this is a leading cause of project cost overruns and failure.

The number two sign of an inexperienced programmer is the one who can't abandon their pet solution when it doesn't work. They will spend hours and days trying to coax it to work instead of wiping the slate and changing direction.

link|flag
1  
I tend to like playing with new tinkets early on in development, but after the first 1/3, I tend to get very nervous with going to new stuff. The learning curves just lead to too many mistakes. – Nazadus Nov 16 '08 at 14:45
2  
guilty! I do that pretty often, but not so much anymore, i'll wipe a project, I insist on using the new hawtness tho so i can learn on the company's budget lol – firoso Apr 7 at 3:52
1  
Indeed - but "reinventing the wheel" is the other extreme. Where EVERYTHING is re-done regardless of whether it worked or not. Often related to the "Not Invented Here" syndrome. – MadKeithV Apr 30 at 11:59
4  
Re: "constantly rushes headlong into the latest technology". I know this is blasphemy, but I try to do it as much as I can. Projects I often work on can often take more than 6 months to release. Just in time for first stable version of the product I am using to be released. The only way to keep up with the market. And I don't remember being burned ever. Even if it happens sometime in future, it will be first time after many such projects. – Dan May 20 at 17:25
show 4 more comments
vote up 52 vote down

They've know that C strings need to be terminated with a null character, but haven't yet understood this.

/* Ensure mystr is zero-terminated */
mystr[ strlen(mystr) ] = '\0';
link|flag
1  
but but... uhh... but... Oh... Uhh..What!? Why would you do that!? I'm so confused. Damn Junior Developers. – Kieveli Nov 28 '08 at 18:59
4  
That is a really great piece of code for interview! – ya23 Apr 30 at 15:03
14  
uh, doesn't strlen search for a \0? – apphacker May 20 at 20:14
5  
apphacker: I think that is actually the whole point to this tongue-in-cheek answer. :) – Arafangion May 21 at 3:10
8  
whoooooooooshhhhh! – Logicalmind May 21 at 15:26
show 4 more comments
vote up 45 vote down

I've actually seen this:

            bool b;

            switch(b)
            {
                case true:
                    DoSomething();
                    break;
                case false:
                    UndoSomething();
                    break;
                default:
                    MessageBox.Show("Error");
                    break;
            }
link|flag
2  
HAhaha, looks innocent till you realise you dealing with a boolean :) – leppie Oct 26 '08 at 8:46
38  
The third option should throw a FileNotFound exception... – Chris Lively Oct 28 '08 at 3:28
10  
What's worse, the default is actually reachable! b takes up one byte and was never initialized. (2 != true). – Joshua May 20 at 17:01
21  
This pattern is important. It allows you to handle the situation where a quantum singularity transforms the laws of physics. – ebencooke May 20 at 17:55
2  
Joshua: I didn't believe that at first but you're right! At least in D, it is possible to create a bool that's neither equal true nor equal false. You'll need pointers or unions to do it though. – FeepingCreature May 20 at 21:33
show 10 more comments
vote up 38 vote down

Probably the most tell-tale sign is an inability to properly factor out code into separate easy-to-understand chunks. If you're regularly encountering functions that are hundreds of lines long, or nested to four or more levels, it's probably a good sign that they're inexperienced.

link|flag
4  
"functions that are hundreds of lines long" Yeaaaaaaaah, I wish I could charge that to inexperience only. long sigh – Paul Nathan Oct 26 '08 at 4:26
show 2 more comments
vote up 32 vote down

Fear of straying from what they know. I had a newbie programmer who insisted on using arrays for everything because he knew how to use them. He couldn't comprehend that Collections were just an easy-to-use array -- Collections were big, scary objects and therefore too "complicated" to use.

Needless to say he didn't really understand how to use arrays, either...

link|flag
1  
I admit that I never took the time to learn StringBuilder because I thought it was overkill, typical MS bloated, library that wouldnt do me any good. Then one day I spent 3 minutes learning it and wondered why I didnt use it from the beginning of my .Net coding. – Neil N May 20 at 18:59
vote up 32 vote down

Not being happier to delete code than to write it.

link|flag
12  
Nothing better than replacing a 30 line monstrosity with one or two liner. – Bernard May 21 at 3:53
2  
Less code is typically easier to read. I enjoy showing devs that their 4 hours of work can be replaced by an existing framework method. – Matthew Whited Jun 24 at 21:04
show 1 more comment
vote up 24 vote down

I think the complexity is the easiest way to sniff out a new coder. Experienced coders are in their soul lazy. They want things to be readable and they don't like to have to remember what a variable or type is. They realize that the simpler the code is the easier it is to debug and the less likely it is to break. New coders over complicate things. Another thing that I think a new coder does is re-invent the wheel. Not really their fault they just don't know enough about wheels that were already invented.

link|flag
vote up 22 vote down

When the programmer assumes that everything will work out fine ...

double MyFunction( int intParam )
{
    return localVar = 100 / intParam;
}
link|flag
67  
The real WTF is that your function shouldn't return anything. – Kevin M. May 20 at 17:25
show 2 more comments
vote up 21 vote down

Two giveaways:

Language religion. There is no "one true language," but it can take time and experience to realize that.

The belief that complexity is a virtue.

link|flag
show 3 more comments
vote up 21 vote down

Not asking questions when they don't know.

link|flag
show 1 more comment
vote up 19 vote down

The single biggest giveaway I've seen? Not planning before coding.

Unfortunately, this applies to intermediate and many advanced programmers, too.

link|flag
3  
This is why I believe peer review every now and then is very important. Even if it's short, it catches things like that and when one has to re-write often enough, they learn to think first and code second. – Nazadus Nov 18 '08 at 11:24
show 2 more comments
vote up 18 vote down
  • Reinventing the wheel badly

    class HashTable {
        Object[] keys, values;
        ...
        Object get(Object key) {
            Object found = "file not found";
            for (int i = 0; i < keys.length; i++) {
                if (key.equals(keys[i]) == true) {
                    found = values[i];
                } else if (key.equals(keys[i]) == false) {
                    // do nothing
                }
            }
            return found;
        }
    
  • Learning how to use regexps and using them for everything
  • Using strings and regexps for rounding/truncating numbers
link|flag
7  
"Reinventing the wheel badly" is also known as "reinventing the square wheel". – CesarB Oct 26 '08 at 1:02
show 3 more comments
vote up 18 vote down
try
{
    // try something
}
catch (Exception ex)
{
    throw ex;
}

I've seen this submitted in code samples from many applications. Typically the entire method is inside the try block.

link|flag
10  
At least they throw the exception. A worse solution (that I've seen frequently) is to just swallow the exception and return like nothing happened. No logging or anything. Fun to debug. – Logicalmind May 21 at 15:31
3  
In C# you would want to just throw; When you do throw ex; it restarts the stacktrace in that method. You would have no idea where it came from. – David Basarab Jul 13 at 18:50
show 3 more comments
vote up 16 vote down

Unnecessary looping. For some reason, junior developers/programmers always loop more times than they have to, nest loops more deeply than they need to, or perform the same operation on a data structure twice, in two (or more) different loops.

link|flag
2  
I once worked with a guy that claimed "all programming problems can be solved with two loops." The funny thing is that for the year we worked together, it was the right answer for the problems we faced. – Chris Lively Oct 26 '08 at 4:23
4  
haha. When I was working with VB6, one of the guys I worked with used to tell me "On Error Resume Next will fix all your problems! Just put it at the beginning of all your routines! You will never have to worry about exception handling!". – Ryan Oct 26 '08 at 4:45
1  
well it would get rid of the error... how much data did he corrupt? – Matthew Whited Jun 24 at 21:01
show 4 more comments
vote up 16 vote down

Writing O(N!) code and passing it off as a working solution.

That irritated me.

link|flag
7  
At least the guy has a working knowledge of recursion. – mamama Oct 26 '08 at 8:28
6  
At least it wasn't hyperfactorial. – TraumaPony Oct 27 '08 at 5:21
show 2 more comments
vote up 15 vote down

Wanting to "start over" on large projects whenever something in the existing framework doesn't match their world view.

link|flag
1  
How about wanting to start over on a large project that was only large because of 3M+ lines of generated (and unused) code. – Matthew Whited Jun 24 at 21:02
1  
Depends on the situation. If it is an existing and supported (commercial/open source) framework, this is indeed silly. If the framework in question is hacked together in-house and is more in the way of developing than actually helping the project, then throwing the framework out and starting over might even be the only right thing to do. ;-) – peSHIr Jul 13 at 13:58
show 2 more comments
vote up 15 vote down

Not only copying and pasting code, but copying and pasting code with comments and not updating the comments to reflect the new context!

link|flag
2  
My favourite example : "/* Covert to uppercase */" <code that converts string to lower case.>" Further down was a method with the same comment, but it did upper case the string, so the programmer had obviously just copy and pasted then modified. No comments are preferable to wrong comments. – Bernard May 21 at 3:56
show 2 more comments
vote up 11 vote down

Another common simple one is:

if(value.equals("something"))
...

The problem with this one is what happens if value is null? Yup, a NullPointerException. Happens all the time. Instead it should be:

if("something".equals(value))
...

Reversing the order can never give you a NullPointerException.

link|flag
13  
-1: this may protect you from NPEs but it hurts readability. I don't think avoiding this technique is a mark of inexperience. – simonn Apr 30 at 23:06
13  
It also depends whether value is allowed to be null. If it shouldn't ever be null, the first version will at least fail early with an exception. The second version will hide the bug. – Dan Dyer May 6 at 10:13
3  
I subscribe to the constant values on the left hand side, it might hurt readability slightly, but it prevents the occurrence of unintentional assignment in place of evaluation, the same as if(myvar = null) { } will compile and potentially run causing a hard to find bug, but if (null = myvar) { } will cause an easy to find compilation error. – BenAlabaster May 20 at 17:51
1  
This does not hurt readability in the slightest - the only problem with it really is that the value should be a constant, not a string literal. That way, it is really easy to detect what is trying to be matched (Java syntax): public static final String THIS_THING = "this that and not the other"; // ... other code if(THIS_THING.equals(value)) { // ... etc } – MetroidFan2002 May 20 at 19:11
6  
i would rather go for string.Equals(stringA, stringB) ... that's the most safe technique! – dittodhole Jul 13 at 11:19
show 5 more comments
vote up 10 vote down

Using parallel arrays when an array of structures/records/objects would be more appropriate.

Comments that convey the author's uncertainty as to why the code works (e.g. /* I don't know why I have to frob the quux but if I don't then it crashes */). Note that these are sometimes also added by those who inherit the code later (e.g. /* TODO: Why in the world is this code frobbing the quux? */).

Comments copied from example code or containing boilerplate documentation.

Code "litter": unused local variables, member variables that are only used in one member function (and not saved across calls), superfluous blocks of code, etc.

(C++) Taking extra care not to delete NULL:

if(ptr) {
    delete ptr;
}

(C++) Using unnecessary semicolons to avoid having to remember which blocks actually need them:

namespace foo {
    int bar() {
        ...
    };
};

(C++) Not even paying lip service to const correctness:

char* surprise = "Hello world!";

(Modifying a pointer to a string literal is undefined behavior, so this should be const char*.)

int add(int& a, int& b) { return a + b; }

(a and b must be lvalues even though they are not modified.)

class baz {
    ...
    double get_result() { return m_result; }
    ...
};

(Calling get_result() requires a non-const baz.)

link|flag
7  
No. The C++ language guarantees that delete p will do nothing if p is equal to NULL. – mafutrct Apr 30 at 13:05
show 6 more comments
vote up 10 vote down

This is the one I see most frequently by far

Imagine there is a method:

string GetConfigFromFile()
{
    return ReadFile("config.txt");
}

Now you need to use this method from another place. What do they do? THIS:

string GetConfigFromOtherFile()
{
    return ReadFile("otherconfig.txt");
}

This problem also extends to "intermediate" level programmers, who have learnt about things like function parameters, but will still do things like this:

int CompareNumbers( int a, int b )
{
     return a.CompareTo(b);
}

.... and repeat again for floats, doubles, strings, etc, instead of just using an IComparable or a generic!

link|flag
show 4 more comments
1 2 3 4 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.