vote up 139 vote down star
111

I am doing some research into common errors and poor assumptions made by junior (and perhaps senior) software engineers.

What was your longest-held poor assumption that was eventually corrected?

For example: I at one point failed to understand that the size of an integer was not a standard (depends on the language and target). A bit embarrassing to state, but there it is.

Be frank: what hard-held belief did you have, and roughly how long did you maintain the assumption? It can be about an algorithm, a language, a programming concept, testing, anything under the computer science domain.

flag
5  
Poll question = probably should be a wiki. – gnovice May 20 at 14:25
5  
@Demi: The question you linked to IS a community wiki. – R. Bemrose May 20 at 14:27
1  
You may be interested doi.acm.org/10.1145/1364782.1364795 doi.acm.org/10.1145/984458.984495 doi.acm.org/10.1145/1142031.1142053 – Simon Gibbs May 20 at 14:28
2  
Thanks for the information regarding community wiki - I have made the change. Can we reopen this now? – Demi May 20 at 14:40
21  
I think we've found a bug. When 1. a question is posted as non-wiki, 2. people answer as non-wiki, 3. the question is changed to wiki, and 4. the question gets > 30 answers, the non-wiki answers are not automatically changed to wiki. Is this a known bug already? – mmyers May 20 at 16:36
show 8 more comments

161 Answers

vote up 13 vote down

That if conditions were evaluated every line, and if you wrote code like this:

Dim a as Boolean = True
If a Then
    Console.WriteLine("1")
    a = False
    Console.WriteLine("2")
Else
    Console.WriteLine("3")
End If

Then the output would be:

1
3
link|flag
11  
This is one misconception I never had/heard of. – Brad Gilbert May 20 at 21:52
3  
Some of my friends used to play this robot-programming game where this was actually the case in the half-assed language you programmed your 'bot in. – Zarkonnen May 21 at 9:51
2  
Wouldn't you find out that wasn't true the first time you stepped thorugh it with the debugger? – John MacIntyre Jun 3 at 22:24
show 3 more comments
vote up 9 vote down

I thought all I needed to do to improve database performance was put the database in 3rd normal form.

link|flag
vote up 11 vote down

That this:

SomeClass object(initialValue);

and this:

SomeClass object = initialValue;

were guaranteed to be equivalent in C++. I thought the second form was guaranteed to be interpreted as if it had been written as the first form. Not so: see C++ Initialization Syntax.

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

I could spend days trying to reduce the amount of memory my business layer used, just to later realize that the WinForms (GUI) of my project used 4 times more memory than the rest of the application.

link|flag
vote up 8 vote down

In C++, during a long time I was tkinking that compiler rejects your when giving a definition for a pure virtual method.

I was astonished when realizing that I was mistaken.

Many times when I tell someone else to give a default implementation of its pure virtual destructor for its abstract class, he/she looks back at me with BIG eyes. And I know from here that a long discussion will follow ... It seems a common belief somewhat spread within C++ beginners (as I consider myself too .. I am still learning currently!)

wikipedia link to c++'s pure virtual methods

link|flag
show 4 more comments
vote up 37 vote down
  • That the company executives care about the quality of the code.
  • That fewer lines is better.
link|flag
2  
they DO care, but you have to combine artist-skills with worker-skills. Every piece of algoritm cant be a piece of art too. Some of it will be plumpering, so reuse the "less used". Remember the old 80/20 rule. 80% of the program is used 20% of the time. So focus 80% on 20% of the code and make that REAL PIECE OF ART! :OP – BerggreenDK May 20 at 23:12
40  
fewer lines are better! part of the reason I dislike java as a language is that doing anything takes up so many lines of code. less lines of code means it is easier to change your code. – Claudiu May 21 at 5:56
4  
It depends on what you're removing to get fewer lines. If the code is still readable with fewer lines then it's good. However, there are plenty of ways to reduce the number of lines of code that make the code worse. – Herms May 21 at 14:57
1  
Except when people take the "fewer lines is better" mentality to far with chained method calls 7 deep so that when one of them throws a null pointer, you have no idea which it was. Or they condense so many actions into one line that it's 150 characters long and performs 4 operations. This makes it both harder to read and harder to debug, but is not any faster nor does it uses less memory during execution. – Trampas Kirk May 21 at 19:24
2  
If your line ends in ))))) and you're not writing Lisp, you have too-few lines. – James M. Jul 30 at 22:23
show 3 more comments
vote up 5 vote down
  • Programming Language == Compiler/Interpreter
  • Programming Language == IDE
  • Programming Language == Standard Library
link|flag
vote up 2 vote down

If you can't read my code, you just don't know the language. I had a few code reviews where I tried to counter with that.

Took a couple more years to learn there's a time and place to be magical with your code and it is in the libraries, not the application. The app is for clarity and readability. Magic is best used when hidden behind extension methods and frameworks.

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

That I should have only one exit point from a function/method.

link|flag
62  
Excellent realization; exit as often as necessary. One should bail out of a function as soon as it makes no sense to continue further into it. Doing this can reduce complexity and increase readability by, for example, avoiding deeply nested conditionals, when they are preconditions required for the method to run properly. In modern languages with memory management and resource constructs like using/finally, continuing all the way to the end of a method dogmatically makes no sense. – Triynko May 20 at 17:35
9  
Who came up with this, by the way? It's like a programming urban legend. – brad May 21 at 20:54
25  
People who have to debug other people's code are who came up with this. – gatorfax May 21 at 23:44
9  
I think this commonly-held but wrong idea is based on a misunderstanding. When you exit a function, you should always return to the same point. That was an important rule in languages like BASIC that didn't enforce it: The rule meant, for instance, that you should use GOSUB instead of GOTO. In languages like C# or Java that call methods, it's automatic. But because it's automatic, I think it morphed from the logical "only one return-to point" to the nonsensical "only one exit point". – Kyralessa May 22 at 17:53
10  
From languages like C where yo need to manually release ressources. Multiple exit points were a good chance for leaking ressources. IMO there's no point to it in languages with exceptions, as you often don't know your exit points anymore, or the are in the middle of a statement. -- In these languages, all that remains is "structure for readability". – peterchen May 27 at 22:16
show 6 more comments
vote up 7 vote down

That I should always optimize my code. That's not to say I shouldn't think through it before I write it, but that I should think hard about how to squeeze every bit of performance out of each statement, even to the point of sacrificing readability.

link|flag
vote up 20 vote down

I thought mainstream design patterns were awesome, when they were introduced in a CS class. I had programmed about 8 years as hobby before that, and I really didn't have solid understanding of how to create good abstractions.

Design patterns felt like magic; you could do really neat stuff. Later I discovered functional programming (via Mozart/Oz, OCaml, later Scala, Haskell, and Clojure), and then I understood that many of the patterns were just boilerplate, or additional complexity, because the language wasn't expressive enough.

Of course there are almost always some kind of patterns, but they are in a higher level in expressive languages. Now I've been doing some professional coding in Java, and I really feel the pain when I have to use a convention such as visitor or command pattern, instead of pattern matching and higher order functions.

link|flag
1  
Not true, how is it boilerplate to have first class stuff instead of limiting the capabilities of a programmer, like in the case of higher order functions. Lisps are beautiful example of this. – egaga May 21 at 10:01
show 1 more comment
vote up 94 vote down

I thought that static typing was sitting very still at your keyboard.

link|flag
19  
Sincere or not, this made me laugh hard at the end of a long day of work. :P – MrZombie May 20 at 21:02
2  
+1! I thought duck typing involved typing too. Or ducks. Or both. – SqlACID Jun 10 at 15:03
show 1 more comment
vote up 21 vote down

That my programming would be faster and better if I performed it alone.

link|flag
15  
That all depends on the other person. =) – JohnFx May 23 at 16:14
show 1 more comment
vote up 2 vote down

That all OOP languages have the same concept of object orientation.

  • A Java interface != a method's interface.
  • A Java interface is a language-specific solution for the need to have multiple inheritance. Ruby's mixins attempt to solve the same problem.
  • Inheritance provided out of the box in Javascript is very different from how Java implements inheritance.
link|flag
vote up 62 vote down

I thought I should move towards abstracting as much as possible. I got hit in the head major with this, because of too much intertwined little bits of functionality.

Now I try keep things as simple and decoupled as possible. Refactoring to make something abstract is much easier than predicting how I need to abstract something.

Thus I moved from developing the framework that rules them all, to snippets of functionality that get the job done. Never looked back, except when I think about the time I naively thought I would be the one developing the next big thing.

link|flag
12  
Decoupled = true Abstraction. Abstract for its own sake is... premature optimization. – Jared Updike May 21 at 4:28
2  
Abstraction and generalisation are powerful tools, sadly used to generalise an abstract use case with one single implementation. The funny thing is that whenever there is a need to change the implementation, the abstractions and generalisations have to change too... – Karlp May 21 at 15:08
show 7 more comments
vote up 184 vote down

That I know where the performance problem is without profiling

link|flag
3  
I think this is why premature optimization is so common place. – Hao Wooi Lim May 21 at 5:21
3  
+1 Wow, someone included an answer that wasn't trivial or off-topic. – Mark Rogers May 21 at 17:09
1  
I've got some tablets that should help with premature optimization... – AndyM Aug 28 at 7:55
vote up 1 vote down

That 640K should to be enough for anybody (DOS). That was widely believed by a lot of people for a number of years.

The first time I had a system with 8MB of RAM, I thought that was far more than I needed. That ran the OS (Mac) plus all the applications I was using (Word, Email, Firefox, etc).

link|flag
2  
You ran firefox on an 8MB machine? What decade was this, and how did you get a hold of such an early copy ;) (intended sarcarm) – Evert May 20 at 15:53
show 4 more comments
vote up 16 vote down

This is embarrassing, but for the longest time I didn’t really grasp the difference between reference types and value types. I thought to you had to use the ref keyword to change an object in a different method.

This is one of the most fundamental concepts to C# that I should have known.

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

That quality of software will lead to greater sales. Sometimes it does but not always.

link|flag
21  
Selling software? That's so 1999. – bzlm May 20 at 16:25
3  
Microsoft sure makes a killing at it. – asp316 May 21 at 13:44
8  
I wish that improving the quality / performance of our software counted as a feature – Tom Leys May 21 at 21:21
show 3 more comments
vote up 0 vote down

Of course you could look at FindBugs and PMD but these are my favorite gotchas and tricks (all Java):

Fields are not overridden, they are shadowed.

There is no explicit super.super access.

Classes with no constructors defined have an implicit zero-argument constructor. I made a practical error related to this one this year.

To get a reference to an inner class's parent you can use the syntax "Outer.this" to disambiguate method calls or synchronize.

Classes are "friends of themselves" in C++ terms, private methods and fields of any instance of that class can be referenced from any method of the same class, even static methods. This would have made some of my early clone() and copy constructors much simpler.

Protected methods and fields are accessable in a static context of extending classes, but only if that class is in the same package. I'm glad that flex.messaging.io.amf isn't a sealed package.

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

That optimizing == rewriting in assembly language.

When I first really understood assembly (coming from BASIC) it seemed that the only way to make code run faster was to rewrite it in assembly. Took quite a few years to realize that compilers can be very good at optimization and especially with CPUs with branch prediction etc they can probably do a better job than a human can do in a reasonable amount of time. Also that spending time on optimizing the algorithm is likely to give you a better win than spending time converting from a high to a low level language. Also that premature optimization is the root of all evil...

link|flag
1  
Peek and Poke are your friends :) – Matthew Whited May 20 at 19:38
1  
Pervert! Say that to the judge! – scraimer Jul 29 at 9:09
show 1 more comment
vote up 14 vote down

Ok, I learned programming rather early. I was 14 or so. And I held all kinds of crazy beliefs, but don't ask me about the precise timing, because that was a … long while ago.

  • Ok, so, I believed for a while that if you use the term synchronize in Java, then Java solves this nasting synchronizing thing for you

  • I believed that static typing would improve performance for at least half a year, likely more.

  • I believed that freeing something would return memory back to the OS rather long.

  • I believed that malloc calls boil down to checking if there is enough free space on the OS, so malloc would be inexpensive.

  • I thought a long while that Java was built with all the benefits and flaws of the other languages in mind, into a "perfect blend" that would take the best properties of the other languages and reject the mistakes.

  • I vastly overestimated the number of cases where LinkedLists outperform ArrayLists.

  • I thought that NP-hardness was a proof that no INSTANCE could be solved efficiently, which is trivially false, for a while.

  • I thought that finding the best flight-plan on travel agency web sites would take so long because of the "Travelling Salesman Problem", as I proudly chuckled to my relatives (when I was small, alright?!)

Could come up with more. No idea how long I sticked to each of them. Sorry.

PS:
Ahh, ok, this one got cleared up not so slowly, but I see newbies do this every now and then, so I thought you might be interested: I also thought that to store an uncertain number of things, you'd need to declare a new variable for each. So I'd create variables a1, a2, a3, ..., rather than using one variable a, which I would declare to be a vector.

link|flag
1  
No, no - you're supposed to create a1, a2, a3 etc but they're ALL supposed to be vectors. – AviD May 24 at 10:42
1  
That traveling salesman just made my day. :D – Andrew Szeto Jul 15 at 2:47
vote up 42 vote down

"On Error Resume Next" was some kind of error handling

link|flag
4  
I feel you...but in vbscript (esp. asp), it was the ONLY "error handling" option available, combined with judicious checking whether an error actually occurred, and a fair amount of prayer. – flatline May 20 at 15:37
2  
Yeah... it is some kind... just a kind that we are glad to be getting away from – Matthew Whited May 20 at 19:41
4  
Well?! but it is. You start your error-handling block with On Error Resume Next, try something, and then If (err.number<>0) then – jpinto3912 May 20 at 21:22
show 3 more comments
vote up 2 vote down

That software engineers are always honest about what they are doing now or done to your software in the past.

link|flag
vote up 31 vote down

That C++ was somehow intrinsically better than all other languages.

This I received from a friend a couple of years ahead of me in college. I kept it with me for an embarrisingly long time (I'm blushing right now). It was only after working with it for 2 years or so before I could see the cracks for what they were.

No one - and nothing - is perfect, there is always room for improvement.

link|flag
2  
It's not?! Uh oh.... – Drew Hall May 20 at 16:34
3  
"better" will bring you tons of less-than-hateful comments. But I would say it is one of the most fast-executing, flexible, free-from-hurdles one. It's also one that takes your youth to proper learn it, only to find you could do more or less the same app. (albeit requiring some extra tonne or two of electricity-generating coal) with java or C#. – jpinto3912 May 20 at 21:35
2  
I've always assumed C++ is worse than straight ANSI C, simply because the kind of trouble that I've seen C++ programmers get into is so much more complicated than the kind of trouble I've seen C programmers get into. – Nosredna May 27 at 21:54
show 5 more comments
vote up 15 vote down

That .net structs (C# & Vb.Net) were reference types, just like classes.

I "received" that peice of wisdom at some point shortly before or after .net 1 arrived on the scene (I've no idea where from, it may have sprung whole from my mind, like Athena from the brow of Zeus), and kept it until disabused of the notion by Jon Skeet about 4 months ago.

Thanks Jon,

P.S. Not programming related but I also believed (until about 5 mintues ago) that "Apollo sprang whole from the brow of Zeus".

link|flag
12  
Athena came from the brow of Zeus. Apollo was born the old fashioned way – Brian Postow May 20 at 15:20
8  
If you use Vb.Net, you are studying the classics every day. – bzlm May 20 at 16:28
show 2 more comments
vote up 28 vote down

I believed that creating programs would be exactly like what was taught in class...you sit down with a group of people, go over a problem, come up with a solution, etc. etc. Instead, the real world is "Here is my problem, I need it solved, go" and ten minutes later you get another, leaving you no real time to plan out your solution efficiently.

link|flag
16  
I think that's called life. – Robin Day May 20 at 15:19
3  
hmmm.. it's time you bail out that company. .. – jpinto3912 May 20 at 21:24
5  
@jpinto3912: No. Because the next company will also be a part of life (see previous comment). – Treb May 21 at 21:41
vote up -8 vote down

This language also OOPs....

link|flag
6  
OOPs, I did it again? – bzlm May 20 at 16:20
1  
Still doesn't make sense. – nicholaides Jun 1 at 7:30
show 3 more comments
vote up 9 vote down

That XML namespaces (or worse, well formedness) are in some way more difficult than trying to do without them.

A very common blunder, even at the W3C!

link|flag
vote up 30 vote down

For the first few years I was programming I didn't catch on that 1 Kbyte is technically 1024 bytes, not 1000. I was always a little perplexed by the fact that the sizes of my data files seemed slightly off from what I expected them to be.

link|flag
57  
Hard drive manufacturers still haven't caught on... – mmyers May 20 at 14:31
7  
@mmyers I think you mean hard drive marketers right? Or are the drives actually built like that? – Instantsoup May 20 at 14:38
11  
Hey, stop the kibi hating. MeBi and KiBi are at least unbambiguobus. – bzlm May 20 at 16:30
13  
Kilo means 1000, Mega means 1000000, Giga means 1000000000. It's the RAM and OS makers that got it wrong, not the drive makers. – Mark Ransom May 20 at 17:26
20  
No one's going to do it? Seriously? Okay, I'll do it... xkcd.com/394 – Erik May 20 at 19:15
show 11 more comments

Your Answer

Get an OpenID
or

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