vote up 139 vote down star
112

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 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 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 15 vote down

That programming is easy.

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

That dynamically typed languages like Python or Ruby are somehow less qualified for use on large projects.

link|flag
1  
I had this same awakening circa 2000. I read some stuff on the original wiki at www.c2.com and ended up starting this page: c2.com/cgi/… and was on the verge of concluding that I was irrationally attached to static typing. But I've since begun using an environment (C#) in which static typing really brings the IDE to life during editing, and I'm now pretty convinced that statically typed languages are better because they are easier to work with. There is no dynamically typed language that would not be improved by some static type info! :) – Earwicker May 27 at 17:09
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 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 13 vote down

One assumption I had as a rookie those days was that people with more years in the field automatically are better developers..

link|flag
2  
+1, but also, conversely, that I understood the problem better and could come up with a better solution than the senior dev. – Nathan Koop Jul 3 at 15:43
show 1 more comment
vote up 12 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 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 11 vote down

I used to believe that the majority of work on an application was actually programming. I'm sure this is true in some cases, but in my experience i spend more time researching, documenting, discussing, and analyzing than actually coding. ( i work on software that operates a laser-based sensor, and determining how best to control the hardware is much more challenging then writing the code to do so.)

I also used to think that open environments where programmers can look over their shoulder and ask the guy (usually) next to them a question were the best environments for a team of programmers to hammer out a solution. It turns out that a dark lonely room is more productive, team or no team.

When i graduated, i assumed that programming professionally would be like programming in college, meaning that i would be given the inputs and expected outputs and asked to fill in the black box that does the conversion. In reality, i have to figure out the inputs, outputs and the black box.

I didn't used to think marketing and sales guys were the scourge of the human race, so naive.

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

Back when I programmed on the TI-83, I thought you couldn't assign a variable to itself. So (ignoring that this is C code, not TI-BASIC) instead of writing

c = c + 1;

I would write

d = c + 1;
c = d;

When I learned about += and ++ it blew my mind.

link|flag
1  
and then you learned that some languages don't have those, and the clock gets set back. – yar May 21 at 13:40
2  
I have dreamt of building a BASIC interpreter with this exact sort of brain-damage. – TokenMacGuy May 22 at 0:08
show 2 more comments
vote up 11 vote down

I thought I would need it.

link|flag
1  
Joke explanation: The line is the opposite of YAGNI (You ain't gonna need it). In essence, I thought I would need a class/module/functionality/etc before I can complete my program. – MrValdez May 21 at 5:41
2  
I've long thought there should be an opposing principle: BWIIDNI? – Earwicker May 27 at 16:53
show 1 more comment
vote up 10 vote down

That Unix and Linux OSs are well designed ... I should probably qualify this(!)

Firstly, the view is reenforced by such anti-truisms as:

  • every subsequent OS developed ends up redesigning unix poorly (its said about lisp as well, where it is more true).
  • the list of rules that make the 'unix philosophy'. Its not that they are wrong, its the implication that unix itself follows them closely.

It may be more true to say that they were well designed/well done, and surely parts of them are, but even this is just a relative judgement, relative to some awful versions of windows. Here are some examples of things that are done badly:

  • configuration is a mess, ad-hoc flat file configs are not good
  • c should have been replaced (by something like d) a long time ago
  • shell scripting is schizophrenic. It is not good for development as it is shorthand designed for quick typing.
  • directory structures are badly named
  • gnu tool chain is unnecessarily arcane
  • the belief that general purpose always trumps special purpose

Overall they require unnecessary expertise to operate. Or rather a lot of knowledge where there is only a moderate amount of understanding.

Its not all bad. Linux is politically better and not corrupted by business needs, but sadly to a large degree a lot of the technical highground has been lost.

link|flag
5  
It's better designed than Windows... – Zifre May 21 at 21:31
3  
I still think that the flat-file config is better, but ad-hoc is a disaster. Seems to me that the MacOS X plist mechanism makes a very good compromise – TokenMacGuy May 22 at 0:05
1  
I think the general point stands: Linux carries around a lot of cruft a bit like windows does. but your specific points don't really convince me, configuration works fine for most things (depends on how the configuration files are implemented), shell scripting is now done with python a lot, directory structure is down to taste, ... Bit weak really – wds May 27 at 7:25
1  
There are probably 'better' negative points - i haven't used it regularly for a while, but do you think that maybe you have low standards on this. Conf works, but not well - but really there should be a standard (with type information) which would make things like context sensitive help, and decent gui tools possible (that can handle all versions of conf files for instance). IMHO your POV lacks vision on this. – mike g May 27 at 13:25
2  
Some of us thought that Unix redesigned Multics poorly. Unix was intentionally designed to avoid being everything Multics was, and then the rest was hacked in instead of being designed in. – Windows programmer Jun 8 at 3:10
show 2 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 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 9 vote down

That code reviews are a waste of time.

Having moved from a company where they were entirely optional to one where they are mandatory (even audited) I've come to understand their usefulness. Having a second set of eyes on code, even on the most trivial pieces, can:

A) save you embarrassment when you screw up something trivial (a trivial code review, for instance, would have prevented us from spamming hundreds of emails to our customers, at my previous job) B) can teach you things that you didn't know in the first place (I'm ever learning new libraries at my current job - inevitably at a big company, someone has already stumbled upon the problem you have and done a better job solving it - it's just a matter of knowing where to look) C) at the very least ensure that someone other than yourself knows how things work.

In the end, I wind up happier with the code I submit here, than in my previous employment, even though back then I thought I knew everything :)

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

That I was a good programmer!

link|flag
show 1 more comment
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 8 vote down

"The project will be done in 2 weeks"

and

"That will take 2 hour to implement"

link|flag
show 4 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 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 7 vote down

As an old procedural programmer, I didn't really understand OO when I first started programming in Java for a hobby project. Wrote lots of code without really understanding the point of interfaces, tried to maximize code re-use by forcing everything into an inheritance hierarchy - wishing Java had multiple inheritance when things wouldn't fit cleaning into one hierarchy. My code worked, but I wince at that early stuff now.

When I started reading about dynamic languages and trying to figure out a good one to learn, reading about Python's significant whitespace turned me off - I was convinced that I would hate that. But when I eventually learned Python, it became something I really like. We generally make the effort in whatever language to have consistent indent levels, but get nothing for it in return (other than the visual readability). In Python, I found that I wasn't doing any more effort than I had before with regard to indent levels, and Python handled what I'd been having to use braces or whatever for in other languages. It makes Python feel cleaner to me now.

link|flag
vote up 7 vote down

My incorrect assumption: That while there's always some room for improvement, in my case, I am pretty much as good a programmer as I can be.

When I first got out of college, I'd already been programming C for 6 years, knew all about "structured programming", thought "OO" was just a fad, and thought "man, I am good!!"

10 years later, I was thinking "OK, back then I was nowhere near as good as I thought I was... now I get the ideas of polymorphism and how to write clean OO programs... now I'm really good".

So somehow, I was always really good, yet also always getting way better than I was earlier.

The penny dropped not long after that and I finally have "some" humility. There's always more to learn (have yet to write a proper program in a purely functional language like Haskell).

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

That bytes and characters were the practically same thing - "ascii" was just a way of mapping a byte value to a glyph on the screen.

Reading about unicode really opened my eyes (although I still don't fully understand it).

link|flag
1  
Great article: joelonsoftware.com/articles/Unicode.html/… – corlettk May 23 at 5:15
show 1 more comment
vote up 7 vote down

This is really embarrassing but when I was starting to learn how to program nothing could satisfy me. I wanted to write video games. Not the trivial little programs all these books wanted me to write. So I decided I could easily skip 10 chapters and ignore the basics.

So I basically ignored variables!

The problem was that I did not recognize keywords from conventions:

Car car = new Car(); //good
Car test = new Car(); //wrong must be lowercase car!

for (int i = 0; i < 10; i++) //good
for (int test = 0; test < 10; test++)//wrong must be i

I did this for over a year and even made a tic-tac-to game in 3000 lines! I was thrilled by my awesomeness at that point, until I found a tic-tac-to in 150 lines on the internet. Then realized I was an idiot and started over again.

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

The OO is not necessarily better then non-OO.

i assumed that OO was always better.. then i discovered other techniques, such as functional programming, and had the realization that OO is not always better.

link|flag
1  
Sorry, that was ambiguous. i assumed that OO was always better.. then i discovered other techniques, such as functional programming, and had the realization that OO is not always better. – sean riley May 21 at 23:52
show 2 more comments
vote up 6 vote down

That's its a 9-5 job

link|flag
vote up 5 vote down
  • Programming Language == Compiler/Interpreter
  • Programming Language == IDE
  • Programming Language == Standard Library
link|flag
vote up 5 vote down

never met with integer promotion before... and thought that 'z' would hold 255 in this code:

unsigned char x = 1;
unsigned char y = 2;
unsigned char z = abs(x - y);

correct value of z is 1

link|flag
1  
Of course sizeof(char) is not important. sizeof(char) is always 1. Meanwhile, the standard allows a conforming implementation to define unsigned char as 16 bits and unsigned int as 16 bits. In that implementation, perfectly legally, x is 1, y is 2, for the subtraction x promotes to unsigned int with value 1, y promotes to unsigned int with value 2, the result of the subtraction is 65535, and abs(65535) is 65535. In that implementation the standard requires unsigned char to promote to unsigned int because plain (signed) int can't hold all the values that unsigned char can hold. – Windows programmer Jun 9 at 1:11
show 11 more comments
vote up 5 vote down

Some of the things that I still have trouble with are the following misconceptions - I still try and hold on to them even though I know better:

  • All stakeholders will make decisions about software design objectively. Those that aren't embroiled in writing the code make all sorts of decisions based entirely on emotion that don't always make sense to us developers.
  • Project budgets always make sense - I've seen companies that are quite happy to drop [just for example] $50,000 a month for years rather than pay $250,000 to have a project completed in 6 months. The government for one loses their annual budget if they don't spend it - so spend it they will, come hell or high water. It astounds me at how many project dollars are wasted on things like this.
  • You should always use the right tools for the right job - sometimes this decision is not in your hands. Sometimes it comes down from on high that "thou shalt use X technology" for this project, leaving you thinking "WTF! Who came up with that ridiculous idea?"... the guy paying your paycheque, that's who, now get it done.
  • Programming ideology comes first and foremost, everything else is secondary. In reality, deadlines and business objectives need to be met in order to get your paycheque. Sometimes you make the worst decisions because you just don't have time to do it the right way... just as sometimes that word is on the tip of your tongue but the minute it takes to recall it makes you choose a different and less ideal word. There isn't always time to do it right, sometimes there is only time to do it - however that may be. Hence oft' seen anti-patterns used by so called experienced developers who have to knock out a solution to a problem 10 minutes before the presentation deadline for the software being delivered to your best client tomorrow.
link|flag

Your Answer

Get an OpenID
or

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