vote up 136 vote down star
108

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

That the benefit of OOP is that you get to reuse the object, when in reality it's the resuse of the rest of the code by creating a new object that has the same interface.

In reality, the object might be 2% of the code so reuse gets you only 2% benefit. The real benefit is reusing other 98% of the code by creating a new object that allows all the other code to something completely different. Now you have reuse of 98% of the code. Well worth th 3x longer it takes to write something as an object.

E.g., If you have a drawing program and suddenly there is a new shape you want to be able to draw you just change the ShapeObject (while keeping the interface the same). Nothing else in the program has to change.

link|flag
vote up 0 vote down

That my schooling would prepare me for a job in the field.

link|flag
vote up 1 vote down

That other people would be as bothered by known bugs as I was, and would make fixing them a priority over project work.

link|flag
vote up 1 vote down

That I need to define all the variables I'll use in my function in its beginning (Pascal style).

I used to believe I need to think about ALL the resources to be used by my function and define them before I start coding, this is probably because my first language was Pascal where that's the requirement. Then when I transformed to C, I would define temp variables that are used only within loops outside those loops, disregarding in-lopp scope, just so that "everything will be defined in the beginning".

It took me several years to understand that defining all the resources in advance is not a holly cow, and that scoping is by itself ultra important to code readability.

link|flag
vote up 0 vote down

alt text

link|flag
vote up 0 vote down

A program can eventually have all of its problems ironed out.

link|flag
vote up 1 vote down

That python was an impractical, annoying language (I can still read some comments on my early code, complaining about it) and C++ what the only true object-oriented language.

I was so wrong I still fill ashamed.

link|flag
vote up 1 vote down

I always believed that to be a good programmer one has to know all the inner workings of the system. I was ashamed of the fact that i didn't know everything that is to be known about the language like its libraries, patterns, snippets before you start coding. Well, I am not so naive anymore.

link|flag
vote up 2 vote down

I think I was 10 years old when someone convinced me that there will be a computer capable of running an infinite loop in under 3 seconds.

link|flag
vote up 1 vote down

That Java passes copies of objects to functions, not references.

In other words, I thought that if you pass an object into a method, then change the object in some way, it doesn't change the object in the calling scope. I always passed objects into methods, manipulated them, then returned them!

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

The specs are complete and suffient

link|flag
vote up 5 vote down

That I can understand my own code without comments!!!

link|flag
vote up 2 vote down
  • My co-workers were/are producing supposedly bad code because they sucked/suck. It took me a while to learn that I should first check what really happened. Most of the times, bad code was caused by lack of management, customers who didn't want to check what they really wanted and started changing their minds like there's no tomorrow, or other circunstances out of anyone's control, like economic crysis.
  • Customers demand "for yesterday" features because they are stupid: Not really. It's about communication. If someone tells them it everything can really be done in 1 week, guess what? they'll want it in 1 week.
  • "Never change code that works". This is not a good thing IMO. You obviously don't have to change what's really working. However, if you never change a piece of code because it's supposedly working and it's too complex to change, you may end up finding out that code isn't really doing what it's supposed to do. Eg: I've seen a sales commission calculation software doing wrong calculations for two years because nobody wanted to maintain the software. Nobody at sales knew about it. The formula was so complex they didn't really know how to check the numbers.
link|flag
vote up 4 vote down

That more comments are better. I've always tried to make my code as readable as possible--mainly because I'm almost certainly the guy that's going to fix the bug that I let slip by. So in years past, I used to have paragraphs after paragraphs of comments.

Eventually it dawned on me that there's a point where more comments--no matter how neatly structured--add no value and actually becomes a hassle to maintain. These days, I take the table-of-contents + footnotes approach and everyone's happier for it.

link|flag
vote up 1 vote down

That we as software engineers can understand what the user really wants.

link|flag
vote up 0 vote down

That the number of sides of a coin isn't 10.

link|flag
vote up 2 vote down

That you needed a client specification to complete a project. More times than not you start with a sales meeting and a notepad. Of course at the end of the meeting they would like a deadline, "just ballpark it".

link|flag
vote up 1 vote down

That marketing guys care about what you do.

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

That I would ever become wealthy programming software for someone else

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

That the evaluation order of if statements in C/C++ was compiler-specific. So writing:

if ( pointer != NULL ) && ( pointer->doSomething() )

Was un-safe because the evaluation order could be swapped. I found out recently (after many years of spouting that lie) that its part of the ANSI-C specification, you can guarantee the order and its perfectly safe.

James

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

In the early eighties when I started playing around with computers (ZX81 with 1K of memory), I used spend hours to type in reams of machine code (bytes, not human readable assembly language) for games from magazines, essentially using BASIC Poke instructions.

I believed that if I ever entered a single instruction incorrectly then I'd have to go back to the beginning and start entering the machine code again from the start.

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

That people actually cared about the technologies being used (open source/ closed source).

link|flag
vote up 4 vote down

That object orientation is always the best way to design source code and will always be.

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

That you could memset( this, 0, sizeof(TheObject) ) a C++ object in its constructor with no negative consequences

link|flag
vote up 1 vote down

That our development methods were chosen and used because they were the best of breed.

Then I figured out that the tools we use had a much greater impact on what we did, when we did it, and how we did it than what I thought.

link|flag
vote up 1 vote down

That the more lines of code then the better the software would be.

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

Common poor assumptions: "Quality of Code is secondary". Even poorer assumption: "Quality of code is not important at all."

Quality of code can be a very broad concept. I disscued it quite thoroughly here.

link|flag
vote up 1 vote down

I thought writing good enough software is an easy task

link|flag
vote up 3 vote down

That managers know what they talk about.

link|flag
vote up 0 vote down

That full Unicode support was a prerequisite for successfully deploying software to Asian regions.

link|flag
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.