I'm a new programmer in college and was wondering if there are any bad habits to watch out for early on. Anything that you wish you knew to avoid when starting. Thanks.
|
55
|
|||||||||||||
|
|
|
Copy and paste programming is probably one of the worst habits that one can develop while starting to learn programming. Learning how to program is best achieved by writing code and understanding other people's code. If you copy/paste code without understanding what's going on, you are doing yourself more harm than good. |
||||||||||||||||
|
|
|
Not writing unit tests. |
||||||||
|
|
|
Don't get hooked on just one programming language, learn what that language is good for and what its not. Learn to use the right tool for the job. |
|||
|
|
Don't duplicate behavior by copy and paste code. |
|||
|
|
|
|
Think 100x longer about the code before you write it. Don't just start spewing spaghetti |
||||||||||||||||
|
|
|
Comments. Comment everything you do. You will thank yourself later, and so will your teammates. Besides, it makes documentation writing easier/unnecessary. |
||||||||||||||||||||
|
|
|
Don't get too stuck into the computer mode of thought. It does you little good to brilliantly solve the wrong problem with elegant code. Customers are smart people, but they don't speak our language. And they pay our salaries. We need to come to them and learn to translate their requirements. |
|||
|
|
|
|
This should set a bad example, while this is more positive (and serious). |
|||
|
|
learn these by heart so you know when you are repeating them http://en.wikipedia.org/wiki/Anti-pattern |
|||
|
|
Have a look at programming anti-patterns. |
|||
|
|
|
|
Not analysing anything before programming |
|||
|
|
|
|
If half-year later you'll think that you are "guru" in C++ (or java or any other language or technology) then it'll be you great mistake. Your should always know a little more than other but you should think that you still don't know anything. It's a key to success in programming. Learn, learn and learn again. |
|||
|
|
Don't optimise prematurely. Donald Knuth made the following statement on optimization: "We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." |
||||||||||||||||
|
|
|
Using poorly named variables. |
||||||||
|
|
|
Refactor. Don't be afraid to re-do it. With proper design and good test coverage, this shouldn't be a problem. If it is, figure out why - you'll learn more from mistakes than successes. [Edit] Er, don't be afraid to refactor I guess is how it should start :) |
|||
|
|
If you must optimize, don't be penny-wise-pound-foolish. I've seen people sweat over which optimization level to use on the compiler, or whether |
||||
|
|
|
Not handling errors. Failing to check return codes, assert conditions or swallowing exceptions. Even in cases where it's "impossible", or "no one will ever use it again". |
||||||||
|
|
|
Don't create solutions that are too elaborately coded and overly feature-rich - Keep it Short and Simple |
|||
|
|
If existing classes or functions don't have quite the behavior you're looking for, modify them to include it. Don't rewrite new classes/fucntions yourself. Duplication is very bad. When your code turns to spaghetti, spend some time rewriting it to make more sense. Comment liberally. Use sensible names for classes, methods, functions, variables, tables, etc. Use a standard naming convention for each (camelCase, underscores, whatever... just think about it and stick to it). |
|||
|
|
|
|
In OO languages, not knowing about high cohesion, low coupling. Or not caring about it (which means not constantly measuring). |
|||
|
|
|
|
Not adhering to YAGNI is a big mistake. (YAGNI = you ain't gonna need it). Build what you need, not what you think you might need. It helps when retaining a focus on the important things and the bigger picture. Even at an API level, the intent of some functionality can be obfuscated by having multiple redundant additional methods or method overloads. Noise in a code base is annoying to work with. E.g. if you only need to load something in memory, don't provide an overload to load it from a file path "just because" you might need it in future. This is especially the case when it comes to bugs. Unit testing finds a lot of bugs, but some will lay hidden until the functionality is actually used by someone. If you have code that is not being run, the bugs won't get found so quickly. Furthermore, when the bugs are discovered, that code might be ancient and the person who wrote it may not remember it, let alone be at the company any more. |
||||
|
|
|
Don't assume anything - ask when you don't know, and comment your code when you do. |
||||
|
|
|
Pick a style of indentation that makes sense (if your professors are giving you lots of code samples, the easiest may be to just use whatever they use) and use it. When I try to help people in my classes I'm amazed by how some of them are totally unable to indent their code in an organized way. (I would say it usually means their thought process is equally disorganized.) Learn other languages. If your classes are all in C++ or Java, go online and mess around with Python or Lisp or Prolog. It's fun! |
|||
|
|
|
|
One question i have always asked myself when doing code reviews and the like is, * Is this the result of being lazy, are there areas that could be improved ?* By that i mean could the person have done better but skipped that bit because they
Many times there are many vital things missing, the completed polished product will not have these. |
|||
|
|
|
|
|
|||
|
|
Writing monolithic routines is one of the worst things you can do. Try to write small, dumb code. Its harder to write code that looks like something anyone could write - that takes real skill. |
|||
|
|
Not paying attention to details. Programming is all about details, yet it amazes me how many times I come across code where the programmer just did a sloppy job. Cut and paste jobs, duplicate code everywhere, and inconsistency across the code base are inexcusable. It really comes down to refactoring. You wouldn't expect any other professional to just walk away when they finally got something "working". I'd hope the surgeon would pull his gloves out of me and stitch me back up when he/she's done operating. One side note...If Visual Studio gives you a warning, treat it as an error and fix it! Don't leave that variable there if its not used. You know who you are. |
|||
|
|
|
|
A mistake programmers often make at the beginning, is to try to write the Whole Program, then compile it and run it. They will be bombarded with 100 compile errors, and even when compiled their program probably won't do the right thing. The way beginners should start a project, is to make a small part of the program, compile and test it, and once it is working, move on to write the next part. Continuously re-running and testing your application, while you add or change only small pieces of code, is a great way to isolate any new problems in the recently changed code. |
||||
|
|
|
Using all kinds of weird control structures to avoid one little |
||||
|
|
|
Putting off writing documentation until the last minute. This is one that bites me no matter how much I try to avoid it. |
|||
|
|
