vote up 138 vote down star
110

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 7 more comments

161 Answers

1 2 3 4 5 6 next
vote up 42 vote down

That programming is impossible.

Not kidding, i always thought that programming was some impossible thing to learn, and i always stayed away from it. And when i got near code, i could never understand it.

Then one day i just sat down and read some basic beginner tutorials, and worked my way from there. And today i work as a programmer and i love every minute of it.

To add, i don't think programming is easy, it's a challenge and i love learning more and there is nothing more fun than to solve some programming problem.

link|flag
2  
Amen! But, hey, don't proclaim this view from rooftops. We don't want everyone to know programming is fun, now do we? ;) ;P – MasterPeter May 20 at 14:30
7  
MasterPeter: It would give us more fodder for us to increase our rep when they come here asking questions. – TheTXI May 20 at 14:32
2  
I would say that programming is hard to do right. It is, however, possible, which seems to be your point. – Steve S May 20 at 14:33
4  
@Olafur: Why would you want the question to be wiki, but not your answer? – gnovice May 20 at 14:52
2  
This mirrors my experience exactly. I wish I'd started sooner now :P – Skilldrick May 20 at 14:59
show 6 more comments
vote up 15 vote down

That programming is easy.

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

Bug free software was possible

link|flag
22  
+1, although NASA almost managed it – Patrick McDonald May 20 at 14:31
35  
Yes but the "almost" cost a few million of dollars :) – Jem May 20 at 15:04
2  
It hasn't yet been achieved, but it's definitely possible (as long as we continue to work with deterministic digital hardware). We'd have to start from scratch with a new, carefully engineered OS and hardware free of serious design faults. – Triynko May 20 at 16:45
10  
@Triynko your "possible" and @JaredPar's "possible" are not the same. Theory and practice might be the same in theory but are very different in practice. – wilhelmtell May 22 at 2:30
6  
@Joseph, part of the problem is people think Hello World programs are bug free. They're not. Most do not check for errors in printf for instance or account for other failed IO attempts. – JaredPar May 22 at 18:01
show 15 more comments
vote up 136 vote down

That non programmers understand what i'm talking about.

link|flag
131  
understand/care.. – nickf May 20 at 15:15
4  
I still have this one at times... I thought at least my wife would have started to understand properly by now :P – workmad3 May 21 at 7:35
2  
Oh dear, I fear I may be yet to learn this! – thatismatt May 21 at 17:09
show 1 more comment
vote up 120 vote down

That private member variables were private to the instance and not the class.

link|flag
6  
Some people think they should be. See 'case 4' in gbracha.blogspot.com/2009/03/… – Daniel James May 20 at 15:18
113  
I held that assumption until... just now. – TheMissingLINQ May 20 at 15:29
7  
@ebrown I usually only find it useful when writing an equals() method – Dave Webb May 20 at 18:13
7  
They are in Ruby. – Mike Kucera May 20 at 20:48
12  
This is so normal to me that this answer didn't make sense the first few times I read it. Now I want to learn Ruby so it can confuse me the other way. :) – jmucchiello May 21 at 15:13
show 19 more comments
vote up 18 vote down

Having No defects is possible before go live

Definitely not true, even P2 defects get left open at times

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

That condition checks like:

if (condition1 && condition2 && condition3)

are performed in an unspecified order...

link|flag
9  
In what language? Languages like C/C++, Java, and Python guarantee that the conditions are evaluated left to right and that evaluation stops at the first condition that returns false. It's part of the langauge spec. I assume that most other languages make the same guarantee. – Clint Miller May 20 at 15:49
27  
@Clint: Yeah, hence "that turned out to be incorrect". – bzlm May 20 at 16:22
3  
actually, this one depends on the language, and & will evaluate all conditions (not shortcut). And I've seen many people use And (&) in VB instead of AndAlso (&&) – Lucas May 20 at 20:44
2  
. . . Actually it will crash in VB.net too unless you use AndAlso re Lucas' comment – Binary Worrier May 21 at 8:28
show 9 more comments
vote up 40 vote down

That anything other than insertion/bubble sort was quite simply dark magic.

link|flag
45  
I am a RESEARCHER in sorting algorithms! And they STILL feel like dark magic. – Arno Setagaya May 20 at 19:31
5  
I once had a line of code in my program that was a long and complicated and I didn't feel like breaking it up or explaining it (it was some complicated lighting formula), so I put it all on one line and #define'd it to be DARK_MAGICK, and the only comment was a warning against trying to unravel the mysteries of the dark magick – Alex May 23 at 10:26
show 5 more comments
vote up 8 vote down

I used to assume it's enough to program Win32 applications.

Also that every program must come with a GUI, because command-line is "outdated".

link|flag
vote up 61 vote down

That all languages are (mostly) created equal.

For a good long while I figured that the language of choice didn't really make much of a difference in the difficulty of the development process and the potential for project success. This is definitely not true.

Choosing the right language for the job is as important/critical as any other single project decision that is made.

link|flag
7  
I feel that chosing the right libraries is what matters. It just so happens there's often a 1-to-1 correspondence between languages and libraries... – Kevin Montrose May 21 at 5:07
3  
But if two programming languages are both Turing complete then what's the difference? You can write any program in either language! ;) – Bill the Lizard May 21 at 14:17
6  
I disagree, the decision what language to use is way less important than who will actually be implementing the project. As just one example of many other more important decisions. – Boris Terzic May 22 at 13:53
1  
While Turning complete languages do make it possible to implement the same application the syntax and metaphors of some languages do often lend themselves to particular problem types – Crippledsmurf May 27 at 11:15
5  
BrainFu** is as turing complete as python is. – hasen j May 27 at 18:31
show 5 more comments
vote up 232 vote down

That people knew what they wanted.

For the longest time I thought I would talk with people, they would describe a problem or workflow and I would put it into code and automate it. Turns out every time that happens, what they thought they wanted wasn't actually what they wanted.

Edit: I agree with most of the comments. This is not a technical answer and may not be what the questioner was looking for. It doesn't apply only to programming. I'm sure it's not my longest-held assumption either, but it was the most striking thing I've learned in the 10 short years I've been doing this. I'm sure it was pure naivete on my part but the way my brain is/was wired and the teaching and experiences I had prior to entering the business world led me to believe that I would be doing what I answered; that I would be able to use code and computers to fix people's problems.

I guess this answer is similar to Robin's about non-programmers understanding/caring about what I'm talking about. It's about learning the business as an agile, iterative, interactive process. It's about learning the difference between being a programming-code-monkey and being a software developer. It's about realizing that there is a differnce between the two and that to be really good in the field, it's not just syntax and typing speed.

Edit: This answer is now community-wiki to appease people upset at this answer giving me rep.

link|flag
6  
Or change what they want after seeing what they previously wanted. People like to change their minds. I know, cuz I'm a people. – sheepsimulator May 20 at 14:36
11  
You were giving them what they asked for, not what they wanted. – Brent Baisley May 20 at 15:43
40  
Why do boring uncontroversial no-answers get up-voted so excessively?! – Niko May 20 at 16:50
26  
Wow. Sounds like someone needs a hug. – bzlm May 20 at 20:26
10  
My god @ people complaining, stackoverflow rep is not a competition. Upvote if you enjoyed the answer, don't downvote because you are jealous you didn't post it first. – Dmitri Farkov May 21 at 21:12
show 16 more comments
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
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 -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 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 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 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 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 41 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 2 more comments
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 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
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 64 vote down

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

link|flag
20  
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 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 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 182 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
show 1 more comment
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 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 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 91 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
1  
+1! I thought duck typing involved typing too. Or ducks. Or both. – SqlACID Jun 10 at 15:03
show 1 more comment
1 2 3 4 5 6 next

Your Answer

Get an OpenID
or

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