vote up 171 vote down star
193

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
11  
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
88  
@ Jon Skeet - That would be the pet peeve of coding a solution before understanding the requirements? – Dan Malkinski Jan 8 at 15:08
22  
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
2  
@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 7 more comments

189 Answers

1 2 3 4 5 7 next
vote up 72 vote down

Ignorance of the fact that it's really important to let your coworkers know when you're ignorant of something!

Especially when working with new colleagues, one of the hardest things I find is trying to figure out what the person knows and doesn't know.

link|flag
1  
+1 for that. It makes for a much better product if everyone on the team knows the ability of the rest of the team. – discorax Jan 8 at 18:29
2  
The biggest problem with that is, the person who doesn't know ... doesn't know they don't know ... kind of like how stupid people think their smart. – John MacIntyre Mar 19 at 1:33
2  
Agreed. It can take a while of dealing with someone to realize they do this, but after a while of interaction and cooperation, you realize they never say "I don't know" or "I'll get back to you on that" then...danger, danger... – Stu Thompson Mar 30 at 20:58
1  
I won't hire anyone who doesn't say "I don't know" at some point during the interview. If you know everything, you can't learn anything, including how to do this job. – Boofus McGoofus Jun 12 at 16:36
show 1 more comment
vote up 2 vote down

Ignorance of the fact that questions like this should be community wiki.

link|flag
2  
Rolled back. If you don't like the answer, vote it down, don't just remove it. – Dan Dyer Jan 8 at 12:36
vote up 234 vote down

In Java and C# (leaving aside ref/out):

Myth: "Objects are passed by reference"

Reality: "Objects aren't passed at all; references are passed by value"

There's a significant difference, and it's often ignored :(

Even in C everything is passed by value (including pointers).

EDIT (jonskeet): Judging by the comments, it may be worth referring to my article on C# parameter passing. Hopefully this will reduce confusion rather than increasing it...

link|flag
110  
In fairness I've yet to see a single real-world problem caused by someone not understanding this. – Draemon Jan 8 at 11:33
10  
@Draemon: It leads to people not understanding what happens if you use "ref" on a reference type. – Jon Skeet Jan 8 at 11:43
5  
@Christoph: The thing is, "pass by reference" has a very specific semantic meaning in computer science, and it's not the same as passing a pointer by value. The latter is usually used to emulate the former, but there's a difference and people should understand it. – Jon Skeet Jan 8 at 12:05
3  
@wds: Indeed, Java doesn't have "ref" - but if people are told that parameters are passed by reference, they might expect to be able to write a swap method, or make similar changes. Living with that sort of misunderstanding is just a bad idea when it's really not that hard to get it right. – Jon Skeet Jan 8 at 12:36
4  
there should be a badge for so many comments :p – fmsf Feb 18 at 13:36
show 57 more comments
vote up 15 vote down

Not commenting unintuitive code. Not commenting unintuitive interfaces.

Disregarding coding style in interface code. (I am kind of used to seeing it ignored in code, but it creeps me out when even the interfaces other people have to use don't blend)

Inconsistency in naming, and ignorance of the value of consistent naming.

link|flag
4  
I would say, the problem is not not commenting unintuitive code, but having unintuitive code itself. – DrJokepu Jan 8 at 20:03
show 4 more comments
vote up 267 vote down

Mine is when programmers think only about the code and not about the users. I put usability first, and try my best to make everything as easy and intuitive to use as possible.

Unfortunately, some programmers don't do that; e.g., they use non-descriptive labels for fields (or, don't use labels at all), don't plan and think about the interface layout, and the error messages explain things in a technical manner rather than telling the user what they need to do.

If more programmers read books on usability, marketing, and other such concepts (like I do), the software world would be a much better place.

link|flag
8  
That's why I always try to get a decent designer to look at my UI, preferably even make a mockup for me. Then I know my UI is done by a professional. I'm not a frontend developer, I develop the systems that make it work! – Erik van Brakel Jan 8 at 13:12
6  
I would double-upvote this is I could, because I feel like it's the reason for a vast majority of software failures - the people who write the code don't know/care about the actual purpose of the application and thing people will use it "just because it's cool". Wrong - it needs to solve a problem. – rwmnau Jan 10 at 22:01
9  
Well said. The end user doesn't give a damn about how clever the programmer is. The program just needs to make their life easier - not more complicated. – Damien Feb 4 at 6:28
1  
Check out whysoftwaresucks.com if you still haven't done that. :) – Arnis L. Jun 6 at 21:40
5  
I'm sorry, but I don't think that's the responsibility of the programmers... They're programmers... they have to think about the code... Why do you think all the development tools are getting better at "letting programmers and designers work together on the same project"? If you make the programmers responsible for the user interface, thats when you get those horrible user interfaces! Just don't do it. Hire a designer! – fretje Jun 17 at 14:54
show 6 more comments
vote up 188 vote down

Ignorance that other programmers may need to maintain your code.

I.e.:

  • Lack of decent method and variable names
  • Lack of comments
  • Moronic structure

Oh, people who think all abstractions are bad. You shouldn't use nHibernate, built in ASP.NET functionality and so on because you lose some control. Why don't they just code everything in assembly...

Edit: I should point out I am not saying that you must use these abstractions, just that there is nothing wrong with using them when it makes sense to (e.g. it's foolish to use nHibernate on a very simple site). It's a judgement call on when an abstraction makes sense, I just think some people are ignorant about the benefits it can bring.

link|flag
10  
I feel a compulsive need to keep clicking the up arrow on this post. – Mike Hofer Jan 8 at 11:55
1  
I'd be in the camp that says you don't need something like nHibernate.. it doesn't take that much more effort to do it with the built in assemblies, and you do have full control (and one less piece of external code to worry about 5 years later). Comparing it to coding in assembly is a huge stretch – John Jan 8 at 13:56
2  
For that matter, forgetting that I may need to maintain that code. I can forget it pretty quickly, and when I do a bad job in the first place... – thursdaysgeek Jan 9 at 0:41
2  
@Roalt - I think that's perhaps a bit too much. I believe many people would not necessarily be able to concentrate on writing the best solutions. So, my suggestion: Always code as if Jon Skeet reviewed your code in the end of every day - and you couldn't go home until he's happy with the results. – Pukku Jan 30 at 20:09
1  
When I had summer interns working for me their first responsibility was to maintain last years' intern code. THAT got them thinking... – n8wrl May 29 at 17:08
show 8 more comments
vote up 49 vote down

These aren't unversal, but are very common:

Lack of knowledge (and interest) about what it takes to operate and support the software once delivered.

Failure to appreciate software has no value in and of itself, but only adds value when it is used for something.

Both of which lead to a lack of interest in what happens to the software once it's compiled, tested and released.

link|flag
1  
+1 to that. Was trying to say the same thing, but could not put it so eloquently. Having done both full-on coding, and full-on end-to-end release management, I know which one is the harder job. – toolkit Jan 8 at 10:54
show 2 more comments
vote up 47 vote down

No one knows what the heck an MVC is. A lot of people think they know, but they're usually wrong.

link|flag
11  
I'd love to meet this "Noone" guy that so many people say knows so much. Unfortunately, no one seems to know who he is. – Dour High Arch Jan 8 at 21:06
16  
Pfffft. No one knows what an MVC is. It's an idea from the 80's that's been bastardized into a web framework. MVC is whatever you/your framework defines it to be. – David Jan 8 at 21:35
3  
"Most Valuable Coder" (don't kill me) – Bernard Jan 9 at 12:44
4  
Isn't MVC on channel 271? – Dan Mar 16 at 19:08
1  
MVC tends to be a multi-layered mess and is often not a very good solution at all. It's a fairly good starting place if you can't figure out what else to do, but don't make it some all-important mantra. – Bill K Mar 29 at 3:52
show 11 more comments
vote up 8 vote down

The simpler, the better.

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

In Java : thinking that "synchronized" blocks are only about atomicity when usually the problems are more about visibility

EDIT: Assuming I (Jon Skeet) understand you correctly, this is what I normally talk about as the difference between atomicity and volatility. And yes, it's misunderstood :(

link|flag
vote up 112 vote down

Ignorance of Polymorphism.

Even in Python (with duck typing!) people still try to write

if type(x) == SomeClassIDefined:
    x.aMethod(arg1)
 elif type(x) == SomeOtherSubclassIDefined:
    x.otherMethod(arg1)
 else:
    x.yetAnother(arg1)

Where, clearly, they should simply rename the three methods to create polymorphic classes. They can eliminate the if and simply

x.renamedMethod(arg1)

Yesterday I saw the "surrogate type check" design pattern.

for arg1 in aBigList:
    if someOption == "x":
        result = someObject.aMethod( arg1 )
    elif someOption == "y":
        result = anotherObject.aMethod( arg1 )
    else:
        result = defaultObject.aMethod( arg1 )

Sigh.

At parameter-parsing main-program-startup time, they should have done this.

if someOption == "x":
    theWorkingObject= someObject
elif someOption == "y":
    theWorkingObject= anotherObject
else:
    theWorkingObject= defaultObject

Then, in the deeply-nested loop they could do this.

for arg1 in aBigList:
    result = theWorkingObject.aMethod( arg1 )

Simpler. Faster. Polymorphic. Pythonic.

link|flag
show 9 more comments
vote up 16 vote down

I agree on the byte<->character issue. There are even several issues in this:

  • "I want to store a byte[] in a String, how do I do that?"
  • "I want to store Chinese characters in a database, but only ever get <?>"
  • "I use UTF-8, but still only get <?>"

The last one is very unfortunate because it comes from half-knowledge. The usual reason for this is that while they use UTF-8 at one point they completely ignore all other places where the encoding would matter.

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

The lack of desire to continually improve. I've seen a lot of developers get to a certain level of skill and then just stop learning new things. No reading of blogs, journals, books; it's like they reached a certain skill level and went "yep, I know all I need to know now"

link|flag
38  
I call them "career programmers", i.e. they are just doing it for a job rather than because they are interested in it. They might as well be accountants or something. Real programmers are always learning new stuff. It's not just a job - it's a lifestyle :) – U62 Jan 8 at 13:12
5  
What if you know everything, like Jon Skeet? ;) – Coincoin Jan 8 at 13:30
3  
Then you write books.. – Damien Jan 8 at 15:34
13  
+1! I once was walking down the hall with someone who announced to a whole group of coworkers that he knew everything "important" about CS and had absolutely no interest in learning anything new, ever. It was a point of pride for him, actually. – Mark Brittingham Mar 17 at 16:26
21  
Hey guys, just to warn you. It does get more annoying to learn this complex stuff as you age. It can still be done, but don't be surprised if some day you hear yourself saying "Meh, I don't really have to deal with that yet..." – Bill K Mar 29 at 3:36
show 8 more comments
vote up 116 vote down

The biggest mistake I see new programmers make is trying to prove their code is correct when it obviously isn't. It usually runs like this:

  1. Programmer writes some code. It fails when run.

  2. He then spends several hours staring at his code convincing himself that it's correct.

  3. He asks for help and instead of accepting that it must be wrong, he focuses on why his code must be right and how 'something else' is causing the problem.

My advice: Assume someone else wrote that code and you know it's broken. Find the broken bit...

link|flag
8  
Ego-less programming: codinghorror.com/blog/archives/… – JesperE Jan 8 at 13:18
5  
Actually, in some cases this might work out pretty good. When you try to explain your code and why it is right to someone, you're forced to re-think every tiny bit while explaining it, and you'll often stumble upon your own error either by yourself or by a comment of the one listening. – Frans-Willem Jan 8 at 15:26
2  
You can stare at source code you've written yourself for hours and not see what it actually say instead of what you think it says. For some reasons the brain doesn't reparse anew :-S – Thorbjørn Ravn Andersen May 8 at 9:39
show 10 more comments
vote up 322 vote down

The attitude that testing is unnecessary or time consuming

If tests aren't written, then there is no way of knowing when some change in the system breaks something elsewhere. Writing tests saves time and money.

In response to Kendall Helmstetter Gelner's comments: testing actually helps refactoring - if you have tests that tell you what the application should do, then when you refactor, those tests should still pass. This is where I have saved many hours of work, after all, the alternative is no tests or doing manual testing for everything, and that is a massive time sink.

link|flag
17  
Well, it is boring, but definitely not unnecessary. – Clayton Jan 8 at 13:04
3  
yeah, it's boring, but its necessary to do boring things sometimes. – Greg Jan 8 at 15:13
21  
I'm a big TDD advocate so don't get me wrong on this one. That there are no tests WRITTEN (in other words automated) doesn't mean that it has not been tested. Just as the fact that there are tests written doesn't guarantee that the right things has been tested. – Patrik Hägne Jan 20 at 22:21
6  
I left a career in software testing for a developer job simply because of this. Testing never gets the time, money, personnel, respect and recognition it deserves. It's always a battle, you're always the "bringer of bad news", and the better you are at your job, the more bad news you bring. – M. Nilsson Apr 1 at 13:09
4  
@Kendall You write tests to ensure that the app meets the requirements at a high level (integration / functional) and a low level (unit) - you dont test to make sure it's tested. 'Test drag' only comes into it if you have written too much test code. If you get the balance right, then refactoring / adding functionality doesn't mean you have to change that much. – Mr. Matt Jul 1 at 10:38
show 11 more comments
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
vote up 4 vote down

With large datasets being moved between systems in XML, not understanding the merits of SAX over DOM, and the performance implications of selecting DOM simply because it is easier to implement. I have seen a number totally unnecesary performance bottlenecks and system failures over this, with XML getting blamed rather than the lazy parser implementation.

link|flag
vote up 65 vote down

I really don't like it when people are testing the value of a boolean like e.g.

if(someflag == true)

Not only is it redundant and unnecessarily verbose, but with a language like C# where there's no implicit conversion from e.g. int to bool it can actually lead to errors. In C# you can't make the classic assignment instead of comparison mistake unless you're testing a bool, so

if(someint = 0)

will not compile, but

if(someflag = true)

will ...

link|flag
9  
Actually if your flag is a boolean, you can name it isSomething, or canDoThis, or anythink like that. Then, it's far more natural to read if (isEnabled). The boolean nature is already in the variable name. – Think Before Coding Jan 8 at 13:27
7  
My gosh I could rant for hours about the stupidity of the "constant on the left" mania... – DrJokepu Jan 8 at 19:48
4  
what about if(something == false) does that read better than if(!something). Like I know it's obvious, but the thinking is it reads better as you might skip over the ! ? That's what I'm currently debating. :) – rball Jan 8 at 23:20
3  
@rball: I prefer if(isSomething == false) because someone new to the code may not see the not sign or may not know what it means. I tend to lean towards the "make it as painfully obvious what you are doing". – Nazadus Jan 17 at 7:18
2  
@Dana - I have to do that sometimes. In Flash a boolean can have 3 values (true, false, null). I find (x == true) or (x != false) useful as a way to coerce it into just true or false. Which I use depends on what I want the default to be if it's null. – Herms Jan 20 at 20:47
show 9 more comments
vote up 188 vote down

It easily has to be that 'Commenting bad code is better than actually refactoring it into good code'

link|flag
7  
I admit that I will do this on some occasions because each change to a function requires user testing. If I see something bad or not good, I will put a comment with notes so that the when we have time, or the next time that function needs to be updated, it can be done in a more fitting fashion. – StingyJack Jan 8 at 13:10
5  
@willcodejavaforfood - I've come to believe that any comment is a smell. Code (in any language) should read like English. – ewalshe Jan 9 at 0:23
4  
@ewalshe : did you ever try cobol? :) – Mikeage Mar 29 at 3:52
4  
Sometimes I comment first so that I can understand well enough to refactor... – Kendall Helmstetter Gelner Jun 30 at 21:22
10  
@ewalshe: English-reading source only tells you how, but neither what (comments) nor why (documentation). – DevSolar Jul 10 at 11:01
show 9 more comments
vote up 48 vote down
  • Programmers not trying to learn the difference of decimal and double

  • Commenting tautologies:

    i = 0; // set i to zero
    
    
    // loop column 80 times
    for(n = 0; n < 80; ++n) putchar(' ');
    

    instead of stating the intent:

    // scroll one line
    for(n = 0; n < 80; ++n) putchar(' ');
    
  • Programmers not knowing that conditions can be simplified(DeMorgan'd), e.g. coding multiple negatives:

    while (keypress != escape_key && keypress != alt_f4_key && keypress != ctrl_w_key)
    

    instead of the one easier to read:

    while (!(keypress == escape_key || keypress == alt_f4_key || keypress == ctrl_w_key))
    

    note: mentally read the construct while(!(...)) as until:

    until (keypress  == escape_key || keypress == alt_f4_key || keypress == ctrl_w_key)
    

    [EDIT: 2009-09-25] related to this question(simplifying the condition):

  • Naming negative variables, e.g. Unpaid, NotFound.

    Using this:

    • If Not Unpaid Then
    • If Not File.NotFound Then

    Instead of what can be easily understood:

    • If Paid Then
    • If File.Found Then
link|flag
2  
Actually I would generally prefer the first case if working in something that didn't have until (i.e. C++), in Ruby I would use whatever sounded nicer. But your while example does not always sound/look nice to me. – Daemin Jan 8 at 11:59
3  
Same here. I'd argue that an extra set of parenthesis would hurt my eyes more, while reading the code. – Dan C. Jan 8 at 12:17
3  
During my college days, I just #define until to make for readable C/C++ programs. #define until(cond) while(!(cond)) so i can use: until (keypress == escape_key || keypress == alt_f4_key || keypress == ctrl_w_key) Same for If, Then, ElseIf, Else, EndIf, etc #define Then ){ #define Else }else{ – Michael Buen Jan 8 at 12:49
5  
@Arnis: please learn what "literally" means. – DisgruntledGoat Jul 4 at 18:41
show 6 more comments
vote up 68 vote down

Thinking that it is OK to swallow an exception:

try {
  ...
}
catch (Exception e) {
  e.printStackTrace();
}

The default Eclipse template does this and so many people just catch a checked exception to get their code to compile and then ignore the ticking NPE.

edit: A post by Reinier reminded me of this one:

if (condition1) {
    if (condition2) {
        if (condition3) {
            if (!condition4) {
                if (condition5 || condition6) {
                    if (condition7) {
                        if (condition8) {
                            if (condition9) {
                                if (condition10) {
                                    // do something important
                                    ...
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
link|flag
4  
This is evil. People do it in so many languages. Failures aren't detected for days -- sometimes when it is too late to fix. – RussellH Jan 9 at 0:20
2  
God I agree whole-heartedly. I keep trying to convince the team I work with that swallowing exceptions and displaying message boxes is bad because you don't know when some other code is going to call yours and have no idea an exception occurred. I think they still don't get it. – Ben Daniel Jan 9 at 2:23
1  
Fortunately, VisualStudio allows you to break from execution for any thrown exception. At that point you get to see just how many people are eating unnecessary exceptions. – Pedro Jun 23 at 14:50
show 5 more comments
vote up 58 vote down

Programmers carrying over habits which may be desirable in one language, but aren't in the new one.

Classic example is seeing C# or Java code like this:

if (5 == someValue)

This is usually written by ex-C or C++ developers who are trying to avoid the typo of:

if (someValue = 5)

which is valid C/C++ (although it generates a warning in most compilers). In C# and Java it's just unnecessary, and I believe most people find it harder to read than the more natural:

if (someValue == 5)
link|flag
3  
@hstoerr: The only case where it would make a difference is: "if (flag = true)" - which should be written as "if (flag)" (or "if (!flag)" for the reverse) anyway. – Jon Skeet Jan 8 at 13:29
7  
@Dan: The problem is that people are making code less readable for a reason which isn't applicable in their language. It's like limiting your variable names to single letters because you happened to use a language with that restriction in the past. – Jon Skeet Jan 8 at 13:30
2  
Another example: C++ enums do not require to use enums like EnumName.EnumValue, it accepts simply EnumValue too, so it makes sense in C++ to have enum value names like EnumNameEnumValue, but in C# this is unnecessary. Still I very often see the following pattern in C#: EnumName.EnumNameEnumValue – DrJokepu Jan 8 at 20:02
3  
Personally, I don't find it any harder to read. – Bernard Jan 9 at 12:47
4  
I dislike this practice even in C++. If you have the willpower to consistently type "if (5 == x)" then you have the willpower to watch the equal-signs and write clear code. The latter is more valuable because it also protects against "if (y = x)". – James M. Jul 27 at 20:54
show 17 more comments
vote up 170 vote down

My personal pet peeve (petty but my teeth grind everytime I see it) is verbosely setting booleans, e.g.

bool isValid;
if (percentage >= 0 && percentage <= 100)
   isValid = true;
else
   isValid = false;

whats wrong with

bool isValid = percentage >= 0 && percentage <= 100;

It's soooooo much more succinct and easier on the eye

link|flag
9  
or bool isValid = percentage >= 0 && percentage <=100 ? true : false; – agnieszka Jan 8 at 13:27
41  
i've seen better though: if(valid == true) return true; else return false; instead of return valid; – agnieszka Jan 8 at 13:28
12  
Most IDEs allow setting a breakpoint with a condition. – Pete Kirkham Jan 20 at 22:44
9  
@Uri: "I generally don't like complex lines and prefer to break them down" I actually agree, but I find it hard to imagine a universe where the above statement would be considered complex. – Binary Worrier Jan 23 at 11:31
10  
Your university did you a disservice Roalt. – Erik Jan 28 at 18:37
show 23 more comments
vote up 173 vote down

Complacency with duplicate code. Two blocks of code which are initially identical are a maintenance headache. They are going to gain differences over time due to being used differently, yet there will be cases where the same fix has to be applied to both similar but non-identical parts. You can try distinguishing after the fact between a fix that should have been applied to the other copy of the code but that was overlooked, and a fix that deliberately wasn't applied to both. It will make your head hurt.

I did code reviews of prospective hires a while back, and realised that the main bar that most applicants needed to get above was nothing fancy - not good Object Orientation, appropriate use of Design Patterns or the like, but just plain old factoring of code into well-named, re-usable methods. I.e. avoiding the "100s of lines of repetitive code in button click handler methods" pattern. This was discovered with "structured programming" in the early 1970s, before most of those applicants were born.

link|flag
6  
A-MEN... But, there is a flip side to this too. People who write functions for EVERYTHING. Hate seeing a .cpp file full of 1 line functions... Geez.. – LarryF Jan 8 at 19:45
6  
+1. I used to wish that I could just disable all copy-paste functionality in the environments of some "seasoned" ex-colleagues of mine. – Pukku Jan 30 at 20:21
4  
On the other hand, trying to maintain a single block of code for two (or more!) clearly distinct purposes may end up being really bad as well: if (flag) { stuff... } else { otherStuff... } minimalAmountOfCommonStuff... if (!flag) { yetMoreStuff... } else if (flag2) { tooMuchStuff } – Pukku Jan 30 at 20:24
3  
Wish I could vote this up 4 times – Bill K Mar 29 at 3:38
4  
Every IDE should not have copy-paste. cut-paste is enough. And the funny part is I am not joking. – lispmachine Jun 6 at 13:00
show 6 more comments
vote up 19 vote down

Another Java/.NET one (this SO question is just great for letting off steam...)

Myth: "Value types live on the stack, reference types live on the heap"

Reality: It's more complicated than that.

C# doesn't actually differentiate between the heap/stack behaviour, and the CLR could potentially do funky things with objects which can never escape from the current method. However, taking existing C# behaviour and ignoring special cases like stackalloc and captured variables for anonymous functions and iterator blocks.

First let's talk about variables. Variables have a context - either they're local to a method, or they're static, or they're instance variables as part of either a value type or a reference type.

  • Static variables are always on the heap.
  • Local variables are always on the stack. (Remember I'm ignoring captured variables here :)
  • Instance variables live in the context of their container. For a reference type this will always be on the heap. For a value type it depends...
  • The value of a variable is never an object. If it's a reference type variable, the value of the variable is a reference. The reference may well be on the stack (e.g. if it's a local variable) but the object it refers to (if it's non-null) will be on the heap.
  • Value parameters are on the stack.
  • Reference parameters (i.e. those with ref/out) will vary by caller.

The value of the variable is stored wherever the variable conceptually lives. So an integer variable which is part of an object will always be on the heap (contrary to the myth). A variable which is part of a value type will live wherever that value type instance lives - which may be on the stack (e.g. if the containing instance is the value of a local variable) or on the heap (e.g. if the containing instance is the value of an instance variable in an object).

That's probably a very confusing explanation because I'm rushing to get to lunch, but basically the myth is far too simplistic, partly because it doesn't talk about variables (or more generally expressions) at all. The context is very important.

link|flag
1  
Why do you (again) say "in Java and C#" and then only showing examples of how C# can trip you up? Could you show an example of how this common misunderstanding has caused problems in java code as well, or not list Java in your title? – Bill K Mar 29 at 4:04
1  
@BillK: In Java people will still be tripped up if they either think that the object is copied (and therefore independent) or if they think that an object is passed by reference (and therefore assignments to the parameter variable are visible to the called). – Jon Skeet Mar 29 at 7:43
1  
Since you're Jon I assume I responded to the wrong post, but I meant in Java, the common understanding is "Newed" objects go on the heap, everything else (pointers to objects & natives) on the stack. I was wondering how this simplistic understanding could confused Java programmers and cause errors. – Bill K Mar 29 at 23:14
show 17 more comments
vote up 55 vote down

Performance isn't that much of a problem until performance becomes a problem. No matter how much you talk about premature optimisation people keep on doing it, at all kinds of level- there is nothing virtuous in writing 2000 lines of compiled code when you could have written 20 lines in a dynamic language just to save 20 processor cycles when your processor is running 95% idle anyway.

If the time comes when performance is a problem you can fix it then, but basing all your decisions on the assumption that it will be wastes everybody's time...

link|flag
2  
I don't disagree with you, but I think it's good nature for developers to think in terms of performance oriented code. If it's UI code, or a cmdline util, not such a problem. But scaling should always be considered. It's never easy to go back and fix broken design months or years later... – LarryF Jan 8 at 19:49
3  
Good design is easy to fix when the problem arises- if it's clean and orthogonal then substituting in a new component/method/whatever to fix a performance bottleneck is relatively easy. – glenatron Jan 9 at 10:22
2  
Many of the performance problems I've found have been in UI code; scaling also applies if the data set you're visualising is big. The worst offenders are dynamic languages, where you face a massive jump if you want to get closer to the metal once algorithmic improvements are exhausted. – Pete Kirkham Jan 20 at 22:50
2  
Yeah, that's what MS said with Vista: Don't worry about performance, by the time we'll be done with this thing folks will have plenty of horsepower. While I'm not saying optimize every single line of code, more often than not this kind of attitude is what makes slow / bad software. – pbz Jan 27 at 19:07
2  
This is a moving target, and you're best to at least be in the right ballpark. Perhaps line optimizing can wait, but architecture decisions need to be on spot. – Walt Gordon Jones May 17 at 9:40
show 4 more comments
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 40 vote down

Programmers who build XML using string concatenation.

link|flag
6  
Start with an infinite lazy string and remove the characters you don't need. – Pete Kirkham Jan 20 at 22:53
1  
@Greg D: I hope you fixed it to use XmlWriter or another XML API. "XML is not String - note the difference in spelling" is a good motto. – John Saunders Mar 15 at 10:09
1  
+1! I'd add to that and say "Programmers who build Javascript, SQL, HTML, or any other 'plain-text' content" as well. – Jacob Jun 20 at 23:12
show 5 more comments
vote up 66 vote down

Treating coding standards as absolutes is my pet peeve. Coding standards are good things that improve readability, but there are always exceptions to the rule. The classic example is the "one return per function" rule. Sure, it's good to limit the number of returns in a function, but there are situations where multiple returns are preferable to contorting your code to use one return.

link|flag
2  
I think the 'one return' rule is a good "suggestion", but it's not law, or even a rule. I agree that hacking code to GET the one return is not always the best way. – LarryF Jan 8 at 19:55
2  
I used to believe in the 'one return rule', until my very first code review, and a senior developer took 5+ minutes deciphering my single if statement in front of me. – drhorrible Jan 9 at 6:21
1  
much like "taking coding standards as absulute" is a peeve... Spitting on coding standards because it does not always apply is just as worst... both are fringing fanaticism, truth lies somewhere in the middle. – Newtopian Mar 26 at 6:07
3  
@Peter Mortensen - Just so you know: for loops, while loops, procedure calls, and if statements are also disguised gotos. – Jason Baker Aug 29 at 0:41
show 11 more comments
vote up 6 vote down

There's a couple of things. One is the same thing you pointed out - lack of proper understanding of Unicode, assuming that all text is represented by a lit of single-byte characters (as pointed out by the powers-that-be).

The other is developers who don't take the time to actually understand what something does or how the specs are defined, but just work simply by trial and error until they find something that works for their particular position and just use it. Then get surprised when it fails under different input (and often will go off and add convoluted if-else clauses, after more trial-and-error work of course, to handle all these anomalous data).

Oh, and as a corollary to the above - IE. There are so many elegant, powerful techniques that you have to abandon simply because of poor implementation in that browser - and when they do get fixed (it's getting better, I'll admit) you still can't use them for another few years until the majority of the public stops using the buggy versions. IE 8 looks like it will finally allow you to have a cookie string of more than 4k without effectively deleting all cookies - but how long until one can write code without having to guard against it?

link|flag
1  
About your first statement... I present to you, the strlen function in PHP. Try print strlen('я') for instance, it will return 2. print strlen('我') will return 3. Why? Because it counts the number of bytes opposed to the number of characters. This can get REALLY annoying. – Erik van Brakel Jan 8 at 13:40
show 1 more comment
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.