vote up 174 vote down star
196

What are in your opinion the worst subjects of widespread ignorance amongst programmers, i.e. things that everyone who aspires to be a professional should know and take seriously, but don't?

flag
12  
I've just seen the word "single" in the question. Does that mean I shouldn't have submitted 5 answers (so far)? – Jon Skeet Jan 8 at 13:17
92  
@ Jon Skeet - That would be the pet peeve of coding a solution before understanding the requirements? – Dan Malkinski Jan 8 at 15:08
23  
Of course we all know that when Jon Skeet codes the requirements re-write themselves to match his output. :-) There must be a bug in SO because the question hasn't changed... – Dan Malkinski Jan 9 at 17:07
3  
@Dan Malinksi: but is has, look again ;) – Joel Coehoorn Jul 10 at 15:12
2  
Just being a pedant, but if it is a 'peeve', surely the word 'favourite' is a bit misplaced – lagerdalek Sep 23 at 19:26
show 8 more comments

190 Answers

prev 1 2 3 4 5 7 next
vote up 12 vote down

Not to comment code.

Seriously, a whole lot of colleagues stated to me, that "hard to write code should be hard to read", when I asked them, why they do not add comments.

I say: "Documentation is like sex. If it's good, it's very, very good. If it's bad, it's better than nothing!"

link|flag
1  
I disagree. Outdated, incorrect comments are worse than no comments. – Hank Mar 5 at 9:37
1  
comments violate DRY - memeagora.blogspot.com/2008/11/… There are still places where useful, but few and far between in modern languages. – Maslow Aug 14 at 13:38
show 3 more comments
vote up 12 vote down

Selective Standards Religion

A developer will crusade for the standards of their chosen technology stack, and completely ignore or even disparage standards outside their primary focus.


Web Developer: "Most DB people are clueless! They don't know the first thing about CSS. Most just use tables to position everything! Haven't these people heard of Standards?"

"What difference does it make whether I use the SQL standard or Product X's proprietary command to retrieve the report data? I get the same result, don't I? I don't even need to worry about the database - my ORM deals with all that."


Backend Developer/DBA: "These UI scripters can't even spell 'relationship'. If even one of them knows the definition of third-normal-form, I'd be stunned."

"The scripters keep nagging me about changing my sales report pages to support their niche browser - why can't they just get with the program and use Browser Y?"


Note - these are examples, and are by no means comprehensive.

The moral of the story is to understand that most technology areas have standards, and you will only improve your skills and value by learning them. Even when you choose to go against the standard, you will be doing it from a position of knowledge, not ignorance.

link|flag
vote up 12 vote down

Short "else" clause after a long "if" clause, especially when the else just throws an exception. I prefer to detect the error case first and throw the exception which tends to limit nesting of subsequent code.

link|flag
1  
I totally agree, it is about testing exceptions and not the normal case, stackoverflow.com/questions/114342/… – hlovdal Feb 13 at 22:36
vote up 11 vote down

Blowing off restrictions/constraints for a framework/library/API/subsystem that are clearly spelled out by its authors in its documentation is a big problem. As a corollary to this, I would include: simply not even bothering to read the documentation.

Here are some examples of mistakes I see cause problems over and over again in Java programming:

  1. Concurrency issues (e.g. modifying things that are non-reentrant from the wrong thread)
  2. Failing to close things properly; a.) either totally omitting the call due to extreme laziness, or b.) failing to structure it in a properly constructed try-catch-finally statement.
  3. Mishandling exceptions; a.) putting things in a catch (Exception ex) statement block that belong in finally, b.) doing catch (Exception ex) and then doing nothing in the body, c.) failing to call a logger with a warn/error/fatal when catching-not-rethrowing ex, d.) logging an exception, re-throwing it, and logging the same exception with same msg, e.) throwing unchecked exceptions and not documenting they are thrown in javadoc, f.) failing to throw a nested exception and instead just throwing a different exception.
  4. Calling a print/println method in production code when using a logger is needed
  5. Not aborting start up of an application when an error is detected in configuration
  6. Syntax errors in generated/entered HTML code; HTML has been out a decade and a half, people - learn the language and use a validator
  7. Generating/entering XML with syntax errors in it, not validating it, and not turning on validation in the XML parser being used
  8. Testing HTML with a particular browser - and completely overlooking the fact that it has lots of errors in it because it "looks right" in that version of that browser.
  9. Spelling errors in comments (decent IDE's point these out now) or worse, in a method name
  10. Declaring a parameter an Object or something too general to use and then down-casting the argument value received. Ninety-five percent of the time, the need for a downcast could have been avoided by using a different approach: overload the method, use generics, keep track of the type being passed by correctly structuring the control flow and data flow of the program, etc.
  11. Using flags and type codes instead of polymorphism in object-oriented langauges
  12. Checking for null AFTER dereferencing the value passed as an argument
  13. Failing to code defensively by checking arguments for correct values: boundary checks, null checks, size checks, and string length checks (empty or too long)
  14. Processing input from CSV (comma-separated value) data files and not handling the myriad special cases: apostrophe(s) in data, double quote mark(s) in data, commas in data, etc.
  15. Concatenating values directly into SQL statements instead of using prepared statements with placeholders and storing the values into it that way. Concatenation is generally an evil way to build SQL statements because of the reasons cited above for CSV data. Plus, has no one heard of "SQL injection vulnerability"?
  16. Calling System.exit method from deep within the bowels of an application, especially one that does not contain resource closing/releasing code in finally clauses of try statements.
  17. Overlooking the fact that ThreadDeath should never be caught (if you catch it, rethrow it) and usually neither should Interrupted Execution unless you consciously are handling it.
  18. C/C++ code that makes JNI calls but fails to check the JNI status after each such call as is required by the spec - and, boy, do they mean it!
  19. Violating the crap out of the architectural constraints/rules for EJBs.
  20. C++ code that throws something insane (like false) instead of a proper exception-explaining class that documents what when wrong; or on the flip side, using catch (...) to catch exceptions. Doing both in the same program really bugs me, pun intended.
  21. Putting code in a static initializer that can fail and not paying attention to the weird context it executes in that will vex anyone trying to debug what you wrote when exceptions occur. Try it - not so happy times, eh?
  22. Writing code such as listed above and then blaming the language, the GUI classes, the SQL server, the J2EE server, the compiler, the operating system, the JDBC drivers, and/or the third party software libraries for your application's slow and/or unreliable behavior.

Those are a few of my least favorite things.

In a more general vein, I have lost track of how many times I have seen code with bugs in it because someone copied code blindly from somewhere else that supposedly "did something similar" to what they were trying to do.

Copy-paste programming without an understanding any deeper than the name of a function and how many arguments to pass it can get your software product into a world of trouble!

The place I see this happen the most often as I work on Java programs is with concurrency issues.

Sun made it way too easy to create a thread in Java - and way too hard, relatively speaking, to detect/prevent cases where some yokel has violated a constraint.

Fortunately, you can check for this problem using AspectJ. There are plenty of good examples of how to do this in books, online articles/tutorials on the web, etc. Program the aspect in a .aj source file not a .java source file. Then, your application proper will not need to be compiled with the AspectJ compiler in general. Only when you want to have the aspect be in effect do you need to use the AspectJ compiler.

Hmmmm... I guess I have seen a lot of defects occur a lot of times and cause a lot of problems.

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

When people don't know what "Unit Testing" means

I've heard the phrase Unit Testing thrown around and since I'm a developer I think of stuff like Nunit and so forth but then it hit me that when I hear QA and Managers say "Unit Testing" they're referring to actually just doing the testing, maybe from a set list ("do A then B then C and the output should be D, if it's not then shit's broke").

So then to avoid confusion I started using the phrase Automated Unit Testing to refer to what I'm calling Unit Testing as a developer - which worked fine right up until the managers thought that I was referring to generating Unit Tests (the lists, I guess) automatically and the QA people thought I was trying to automate them out of a job.

I guess I'll just call it "NUnit Tests" and be done with it. Well, until we get migrated to TFS at least.

link|flag
vote up 11 vote down

In C and C++:

Myth: Arrays are just pointers

Reality: Pointers are very different. Arrays are converted to pointers implicitly and often.

An array is a block of elements, while a pointer points to such a block. As this simple observation shows, they can't be the same. And an array also can't be some special kind of pointer, because as it is a block of elements, it doesn't point to somewhere.

Nevertheless, I often see people write that arrays are just pointers pointing to a block of memory. That yields to the fact that people try to pass arrays like if they were pointers. Two dimensional arrays are tried to pass like

void myarray(int **array) { array[i][j]...; } // wrong!

while believing if they have two dimensions, they have a pointer to a pointer. In reality, an array itself consists of the elements, it does not point to them:

int a[4][3]; sizeof(a) == 4 * sizeof(int[3])

There are many contexts in which one needs to address a certain element of it. This is where it converts to a pointer implicitly (i.e without programmers writing it). When passing the array to a function, the function receives a pointer to the first element that points to the array. That pointer is made up by the compiler as a temporary. The two dimensional array of above, would thus be passed like this:

void myarray(int (*array)[3]);

Which makes the parameter a pointer to the first element of it, namely a pointer to the first 3-elements array.

Arrays in function parameters

The programmer may declare a parameter to be an array, like in the following example.

void f(char s[]) { }

This will confuse the crap out of a programmer, at first. Because as the programmer works with the parameter, he finds out that it is actually a pointer. And he is right - it is a pointer, despite being declared as an array. The compiler doesn't care that you told him it's an array, it will make s a pointer anyway. As a consequence, any size you specify in the brackets is silently ignored, too. In this case and only in this case, s is a pointer and you can say it points to memory, because it itself does not own the data you access through it.

Variable Length Arrays (VLA)

Note that C99 introduced variable length arrays, which your compiler may silently support, too. These arrays have a size that isn't known at compile time. Their type is called a variably modified type, and these arrays can be used only for parameters or non-static, local variables (automatic storage duration). Here is an example

void f(int n) {
    int a[n];
}

In this case, the rule is the same as for non-variable length arrays. The array here will convert implicitly to int* (its element type) when required - just as with the other array above. Also, sizeof behaves correctly, and would yield in this case

sizeof(a) == n * sizeof(int)

They are not declared as pointers just because they have a size determined at runtime!

Related answers

link|flag
show 2 more comments
vote up 10 vote down

In C#, when Visual Studio's default names are left in, and I have to figure out what button23 does, and why it reads from TextBox13 by flipping back and forth between the code and visual views of Form1.cs.

link|flag
vote up 10 vote down

I call it "coding from the hip", but it really is a specific category - a better name may be "overimperative programming" or "structureless programming":

The code is structured as one or more function implementations (e.g. of the main function in a C program, or of a set of user interface event handlers in a .NET end user application). The code inside those functions was written line by line, by determining the next thing that needs to be done, writing a line of code to achieve that, and repeating this until done. When a case distinction needs to be made, an if statement is added, then, line by line, all the code for what happens if the condition holds, then the else clause is added, then the code for the then part is copied over and modified until it is the code for the else part. So complex condition checking appears as an arbitrarily large tree of nested ifs. Iterations were traditionally programmed by jumping back to some point with goto, then tweaking until everything seems to work, but Dijkstra's protest againt this has become too strong so now the tweaking is done with for and while loops. All iterations are programmed by explicitly creating arrays for the data to be used for each case, then filling the array using an integer index variable (without explicit numbers we lose track of where we are, don't we?) followed by another such loop to read and apply the data. More complex data are stored in multidimensional arrays or arrays of arrays and structs; other data structures are absent, pointers are a mahjor source of bugs, when used at all. All variables and arrays are treated like an assembly language writer's memory locations, so they are all global, have meaningless names, or incorrect ones due to being randomly repurposed. Correcting index bounds and array overflows are the programmer's main sources of debugging time. Rewriting and extension code is done by scanning for points at which a change or extension is required, then adding and copy-pasting statements and ifs in the usual way, then tweaking the result until it appears to work.

This is not always a result of ignorance: sometimes the programmer got so little time, or so incrementally, that there wasn't time to think about design, Nor is it always bad: if the resulting code is small enough, there may be nothing wrong with it.

The main danger of starting out programmers on a diet of assembler or C (or an similar subset of some other language) is that they fail to proceed beyond this stage. Most of the well-known programming improvements techniques (no goto, sensible naming, advanced data structures, structured programming, libraries with APIs, object-oriented programming, functional programming, layered architecture, patterns, refactoring, etc.) are attempts to help them do this, either by incremental fixing or by starting out in a radically different way.

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

Reinventing the wheel.

As in: instead of using 30 minutes to look up a standard, textbook-ish solution (using an actual textbook, Google, or whatever) – first use 25 minutes to design your own solution (because it's somehow less boring; see also NIH), then use another 25 minutes to make your solution compile, then use 1:45 to prevent it from crashing when you just try it, then use 3.5 days for some additional fixes based on integration testing (or whatever it is that you do), and finally spend weeks processing bug reports and log files / stack dumps / whatever that you get from the customers.

link|flag
1  
Worse than that are "technical" managers who discourage use of existing solutions that weren't "written here". – JasonFruit May 22 at 20:42
show 1 more comment
vote up 9 vote down

My pet peeve is code which is written to join a list/array of strings into a comma separated list and they loop round each item appending the comma (or other separater) and then when they get to the end remove the last separator when it can be easily done in a couple of lines (assuming c#).

        List<string> result = new List<string>();
        // do something if needed
        return string.Join(separator, result.ToArray());

:-)

link|flag
1  
I think this can be expanded to any situation where someone writes lots of code due to lack of knowledge of built-in functions. Happens all the time in PHP (which is worse because using PHP code to do something is always slower than the equivalent built-in function). – DisgruntledGoat Jul 4 at 20:03
show 1 more comment
vote up 9 vote down

I don't think any else has posted this - I hate "over inheritance" where the class hierarchy is 8 or 9 classes deep. I've seen code like this written by fairly experienced people and I think it's caused by combination of a naive view of what inheritance is for and an unwillingness to refactor base classes to make better use of encapsulation instead.

link|flag
1  
Ah, classic. I like to call this "OO-wanking". – Rob Jan 17 at 7:55
show 1 more comment
vote up 9 vote down

Spelling mistakes.

link|flag
1  
You do realize your code will still compile as long as you misspell consistently, don't you? ;-) – John MacIntyre Jan 14 at 17:45
show 2 more comments
vote up 9 vote down

"Runs on my box"

link|flag
vote up 8 vote down

The simpler, the better.

link|flag
show 2 more comments
vote up 8 vote down

Using a collection of If conditions instead of regular expression. I already saw a +1000 line function that could be reduced to 2 regular expressions.

link|flag
show 2 more comments
vote up 8 vote down

In no specific order:

  • People who pick a certain technology for a project just to get it on their resume. We have this one unmaintainable app at work because the developer (who left about 6 months after starting the project) decided he needed to write it in something neither he nor anybody else knew.

  • People who believe that there is one true way to do something and that everybody else who doesn't agree is either stupid, ignorant, or a heretic.

  • Premature/Nonsensical optimization strategies. This was taken to its extreme by one of my former co-workers at a Java job (I love Java, this has nothing to do with the language). He refused to use interfaces, non-final methods, or non-final classes. He believed everything (EVERYTHING) should be cached to the extent that he wouldn't create objects and would cache even the simplest things. He believed that all this made his code "more performant" (is that even a word?!). Of course, he wouldn't cite any sort of proof that this was the way to do it, nor would he prove that his code needed this optimization in the first place. Code like this is a joy to test, by the way.

  • Job title as a defense. Same job as the last part, we had this guy who was convinced that java.lang.String had some kind of bug in it. When I tried to point out that it might be his code instead, he started in with the "I'm a Lead Developer, and if I say it's in String, that's where it is. You need to follow me. I'M A LEAD DEVELOPER!"

link|flag
show 2 more comments
vote up 8 vote down

Professional programmers who don't understand free software (open source) licenses, and yet either use the code without regard to what the license says, or make blatantly false statements that simply reading the license in question would fix. Now, there are a lot of licenses out there, so it's not necessary to understand the intricacies of every single one, but if you are going to use or discuss one of the most common licenses (GPL, LGPL, BSD, or MIT), you should at least have a decent idea of the basic requirements of that license.

I have found GPL'd software in proprietary code bases with all license notices stripped off. I have seen people assert that because it's free software and they have the source code in front of them they should be able to do whatever they want with it.

On the other hand, there are the people who make blatantly false statements about licenses without having ever actually read the license in question; for instance, asserting that the GPL is viral, or that your code must be under the GPL if you link to GPL'd code.

Just for the record, since I have seen a lot of this confusion recently, the GPL doesn't force you to do anything; it does not infect your code. It is simply a license; that is, it is a set of terms which, if followed, give you permission to copy and distribute that GPL'd code. Those conditions include having no restrictions beyond those of the GPL on code you distribute that is based on (which basically means linked to) the GPL'd code. Your code can be licensed under any GPL compatible license, and if you remove the GPL'd code (including support for linking to it, unless it's the LGPL), then you can go back to using any license you want.

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

People who really believe that Object Oriented Programming is the end all be all of programming, and completely disregard anything else. I'm a Clojure and Haskell programmer. People like that are extremely annoying, and extremely blind.

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

Programmers who use strings as a universal variable type.

link|flag
vote up 8 vote down

Asking a perfectly legitimate question on Stack Overflow that I and numerious programmers would love to discuss and debate over, only to have it closed within minutes by trigger happy individuals.

link|flag
vote up 8 vote down

Using string concatenation rather than parameters for SQL:

v_sql = "select cust_age from customer where cust_id = " + v_cust_id
link|flag
show 1 more comment
vote up 7 vote down

I have three: Web programmers who don't know HTML and Javascript, but instead depend on frameworks that they don't really understand - they don't know what the framework is producing on the client.

Application programmers who don't understand that the computer doesn't run their source code (they don't understand the compilation/interpretation step)

SQL programmers who don't write SQL - ie. they write procedural languages using SQL syntax.

I suppose I could go on forever with this, but those are the top three

link|flag
vote up 7 vote down

Not using loop continuation statements. Imagine, a multi-screen method, that continues to indent near-endlessly.

while (someCondition) {
   if (myOtherCondition) {       
      if (yetAnotherCondition) {
           doSomethingWorthwhile();
       }
   } 
}

versus

while (someCondition) {
    if (!(myOtherCondition && yetAnotherCondition))
        continue;

    doSomethingWorthwhile();
}
link|flag
2  
that would terminate looping. this is for cases when your iterating over a collection where some elements may not need the loop action. effectively it acts as a filter. – segy Mar 2 at 16:59
show 4 more comments
vote up 7 vote down

The end-user experience. Most developers have a flat-out disdain of the end-user when it is the end-user who is the entire point of the development effort.

link|flag
vote up 7 vote down

Oh, just remembered another one...

In C# and Java at least, '? :' isn't called "the ternary operator". It's the conditional operator. It happens to be a ternary operator (in that it has three operands) and it happens to be the only ternary operator at the moment, but that's not its name, nor does it describe the purpose of the operator.

If either language ever gains a second conditional operator (it's possible) then all articles/answers/books etc which refer to the conditional operator as "the ternary operator" will become ambiguous.

Yes, this is very much a pedantic peeve, but it still irritates me. I blame book and tutorial authors who've been spreading the non-name "ternary" for years :(

link|flag
show 4 more comments
vote up 7 vote down

Ignoring all performance aspects for the sake of quick and dirty code. We all now the axiom "premature optimization is the root of all evil". However, there's a middle ground between premature optimization, and writing code with abysmal performance characteristics.

No, you don't need to spend hours tweaking your SQL queries to wring an extra millisecond out of them if you're running a tiny application with a mostly idle system, but you DO need to avoid things like "SELECT * FROM table" just because it was easier to code it that way. Things like this work great in a test/dev system, but what about in the real world where someone will be running with 100 or 1000x as much data in the db? Same goes for any code you write.

Take performance into account enough to recognize when you're artificially creating a bottleneck. This is an area where an ounce of prevention is definitely worth a pound of cure...

link|flag
1  
And the idea that developer time (saving a couple of minutes once) is more important than user time (having a 30 second delay hundreds or even thousands of times a day). – HLGEM Mar 24 at 15:14
vote up 7 vote down

Anyone who calls "SQL Server" "SQL". One is a product of Microsoft, the other is not.

link|flag
show 2 more comments
vote up 7 vote down

Developers that go "solve" the customer requirements by creating some reusable framework or system that is completely unnecessary for what the customer asked for.

I find this usually done by very inteligant, but bored people would who much rather work on something interesting to them then actually solve the problem for the customer.

link|flag
vote up 7 vote down

Caught, but unhandled exceptions

Nothing bugs me more than coming across a try...catch block that doesn't have any exception handling or propagation.

Example:

Try

'do something here

 Catch ex as Exception

 End Try

Lack of proper exception propagation has cost our dev team countless hours of debugging.

link|flag
vote up 6 vote down

I recently became aware that a lot (and I mean a LOT ) of programmers are not familiarised with the inheritance concept and have absolutely no idea why it is useful.

link|flag
8  
Then again, some people are way too familiar with the concept and insist that everything be superclassed, or have an interface :P – Alex Fort Jan 8 at 14:39
2  
Suggesting that everything should have an interface is way different than everything being subclassed. If everything is [somewhat decently] bound to an interface, there aren't many downsides--if the analogy of inheritance is overused, it often leads to a much, much worse design. – Marc Bollinger Jan 8 at 17:04
1  
Pete, if you follow that train of thought you will be able to conclude that we don't need computers because paper worked just fine ;) – Sergio Jan 22 at 9:58
show 4 more comments
prev 1 2 3 4 5 7 next

Your Answer

Get an OpenID
or

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