Possible Duplicate:
What is your longest-held programming assumption that turned out to be incorrect?
What do you consider to be the most harmful misconception about programming from people who are new to programming that you have seen?
|
9
|
What do you consider to be the most harmful misconception about programming from people who are new to programming that you have seen? |
||||||||||||||||||||
|
|
|
Re-inventing standard library functions/classes. After going through a language book/tutorial, most beginners - knowing how to handle strings and numbers - will invent their own date functions, their own 'compression algorithms', their own SORT implementations. Oh, and they always spend their first day searching for |
||||||||||||||||||||
|
|
|
That they will "break" something! Or, to define "newcomers" as those that don't do it, "It'll be easy to change! It's software!" cheers, |
|||
|
|
|
|
|
||||
|
|
|
|
|||
|
|
|
|
That the program has to be correct the first time. Fail fast, early, and often. It's the only way to get better. |
|||
|
|
|
|
Maybe not the most harmful, but they usually can't estimate how long stuff will take to be done, they think it can be done much faster than it really must(including me). As for harmful stuff, good companies usually keep beginners away from where they can do much harm. They are usually encouraged to work by someone more experienced, so they can learn better. |
||||||||||||
|
|
|
It has something to do with computers. |
|||
|
|
That if their code doesn't compile or work, it is because of a bug in the compiler. |
||||||||||||
|
|
|
That all there is to it is building cool new stuff everyday. Maintenance IS a part of programming! |
|||
|
|
|
|
That it is a promising career path and they should all go there. Then it takes years to clean up the system of primates' code. |
|||
|
|
|
|
That you have to use every feature of the language you are learning, inheritance above all. Updated: be obsessive about assembly inline code in C |
|||
|
|
|
|
That automated testing is a waste of time. |
|||
|
|
|
|
That because their program compiles and runs it does what they expect it to do. |
||||||||
|
|
|
Most new programmers overestimate the intelligence of the compiler, in my experience. This might take the form of expecting c arrays to multiply like vectors or matrices, right down to telling the computer what they want in English. ("diagonalize matrix A;") I've also seen people expect the compiler to be completely aware of all the code right from the beginning, and so being lax about what order things go in. |
|||
|
|
|
|
That if their program works on their own computer, then it will work on everybody else's computer too.
|
||||||||||||
|
|
|
That the user is a programmer. |
||||
|
|
|
That programming is all about the syntax. Turns out it is all about problem solving. |
||||
|
|
|
Overestimating the importance (and the time share) of actually writing code followed by a little testing/debugging, while underestimating or simply forgetting about writing unit tests, and other important activities such as requirements, writing specifications, design, system test, and customer acceptance. |
|||
|
|
|
|
Thinking if it doesn't look horribly complicated it must be wrong or "bad" code. I must admit years ago in school I was guilty of thinking my programs didn't look complicated enough! These days I want to cry if something doesn't turn out as simple as:
:P |
|||
|
|
|
|
|
|||
|
|
The most common misconception is that you can write an application by starting your favorite IDE/editor and then write code immediately. Yes, it will create an application. Yes, it's probably cr@p too when you're finished... You start developing software by first creating a design. Preferably with pen and paper or with some useful tools on your computer. Writing the actual code just happens to be a small part of the whole process. (If not, you're doing something wrong!) |
|||
|
|
|
|
Clever programmers knows that:
|
|||
|
|
|
|
"I am going to make a ton of money by playing with computers!" Edit: Another one that drives me nuts: "The other guy's code isn't calling mine correctly, so it's not my fault the system doesn't work." -- with no proactive investigation, diagnosis, suggested patch, nothing. As a manager or a team leader, this really gets under my skin. |
|||
|
|
Or, to add another insult to injury, the newbie starts to improve the performance of a piece of code, making it 5 times better and being very proud of himself... Until someone reminds him that he improved the performance of just a small piece of the whole process with a net result of one second for a process that takes two hours. (I've actually had a colleague who did something dumb. A process had to import half a million of records and he was real proud that he made it start up faster simply by skipping some initialization. As a result, the first log entry would appear within a second instead of after 10 seconds. Unfortunately, the whole process slowed down from 30 minutes to 6 hours...) |
|||
|
|
"The problem is not in my program, it's a bug in the library / OS / language." "It worked on my machine! What is wrong with yours?" "Everything is a pattern, you just have to find them." "I don't need to test because I only made a one line change." "Source control is a waste of time for this project." |
|||
|
|
|
|||
|
|
|
|
That their code doesn't need to be documented. They're the only ones who will ever look at it, right? |
|||
|
|
|
|
That you have to have design patterns in your code. |
|||
|
|
|
|
That the hard part is typing in the code. The farther up you go, the more that comes to be the easy part. |
|||
|
|
|
|
Being resistant to changing code because of some gut feeling that it will be slower, e.g. changing nested ifs to a table-driven approach. |
|||
|
|