vote up 58 vote down star
55

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.

flag
4  
All programmers should review this question... ;-) – Frank May 4 at 14:43
10  
Wasting too much time on stack overflow :p – Sam Saffron May 5 at 10:12
4  
Not wasting enough time on stack overflow – Min May 18 at 19:02

100 Answers

1 2 3 4 next
vote up 113 vote down check

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.

link|flag
8  
Yeah, even when I'm just copying someones code example, I"ll still type it out by hand to learn it more thoroughly. – CookieOfFortune May 3 at 22:27
40  
There's two aspects to this -- copy/pasting other people's code, and copy/pasting your own code. Both are bad. If you find yourself copy/pasting your own code in the same program, you're doing something wrong. Refactor it. – Andrew Coleson May 3 at 22:45
7  
@Andrew: 90% of the time, it's bad. But when doing things like initialization, or creating a new class, sometimes copy and paste is the way to go. – Andrei Krotkov May 4 at 1:23
2  
Most of the time when I copy and paste my own code it isn't business logic, but just the cruft that is necessary when coding in that language, like Andrei says, the code for declaring a new class is a decent example. – thomasrutter May 4 at 5:15
show 7 more comments
vote up 35 vote down

Not writing unit tests.

link|flag
10  
I wish somebody was there to tell me in school several years ago..some how this aspect is totally lost in our schools and universities. – CodeToGlory May 3 at 23:33
9  
Even though vital for high-quality software, this practice generally clashes with real-world pressures and deadlines. In open source, totally - but good luck convincing business people that you have been doing something other that "create". A lot of us "just do it", on our own time, but that can get old if you are not billing by the hour, eh? – Andrei Taranchenko May 4 at 0:13
show 4 more comments
vote up 12 vote down

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.

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

Don't duplicate behavior by copy and paste code.

link|flag
vote up 12 vote down

Think 100x longer about the code before you write it. Don't just start spewing spaghetti

link|flag
10  
I disagree with this. If your code starts becoming spaghetti, then you need to refactor and move on. Some of the coolest things I've worked on, started as a mess of methods just to prove it could be done but then was refactored into a robust extensible thing... – Josh May 3 at 23:28
3  
I am traditionally tasked a project long before I start it and I think about how I will implement it and the new features weeks before I actually do which results in cleaner code and increase in productivity. Sorry you don't agree. It's more of a statement about newbies anyways and so many NOT thinking before coding. But I am probably unusual and OCD about code. – Chad Grant May 4 at 3:09
3  
+1 - So many problems seem obvious and avoidable when given some proper thought. You could save a day of refactoring (and a day of writing the original) if you just think for 20 mins before 'coding from the hip.' – SnOrfus May 4 at 5:00
1  
+1. The 100x is an obvious hyperbole. It's much better to think about the problem and the solution before diving right in. – Min May 4 at 15:00
show 2 more comments
vote up 18 vote down

Comments. Comment everything you do. You will thank yourself later, and so will your teammates. Besides, it makes documentation writing easier/unnecessary.

link|flag
22  
Better to write code that doesn't need comments to be understood. – tvanfosson May 3 at 22:57
3  
my opinion is that properly written properly unit tested code will need 1 comment for every 20 lines; you're just adding a second set of code to maintain -- that's not compiled and is only vaguely coupled to what the actual code is doing – jcollum May 3 at 23:24
30  
Comments Lie. If your comments are explaining the how, then they are not good comments. Instead of explaining the code in comment form, refactor it so that it is more understandable. The comments should ONLY express the WHY, as in 'why would anyone want to do this?' or 'why did you use this algorithm instead of that' or 'why does this even work at all?' – TokenMacGuy May 3 at 23:27
4  
90% of the time you find yourself writing a comment to explain what some function does or what some variable is for, it means you picked a poor name for that function or variable. Name things so as to make their role obvious. – glenra May 4 at 3:20
5  
I write a comment for every method/function describing in brief what it does and what it returns, good for documentation afterwards, otherwise it probably averages a single comment every 10 to 20 lines. – thomasrutter May 4 at 5:24
show 5 more comments
vote up 14 vote down

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.

link|flag
vote up 9 vote down

This should set a bad example, while this is more positive (and serious).

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

learn these by heart so you know when you are repeating them http://en.wikipedia.org/wiki/Anti-pattern

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

Have a look at programming anti-patterns.

link|flag
vote up 2 vote down

Not analysing anything before programming

link|flag
vote up 8 vote down

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.

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

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."

link|flag
1  
I like that 97% qualification, because most of the time people just say "don't optimise prematurely" and leave it at that. A seasoned programmer knows what is worth optimising and what isn't, and most code isn't. – thomasrutter May 4 at 5:19
15  
I actually think this is some of the worst advice that gets passed around. Most developers these days seem to confuse programming efficiently with premature optimization. If you're Knuth or one of his colleagues, this is great advice. Otherwise, it's often used as an excuse for sloppy programming. – Travis May 4 at 5:45
1  
Travis has an excellent point. There are order-of-magnitude differences between algorithms you'll see students write in an intro programming course - e.g., unneeded triple nested loops, recursion without caching, etc. A colleague looking for CS grad student help at a major university (with a good CS department) gave candidates some simple tests - he had people writing O(n^3) algorithms for problems that were O(n log(n)). You don't want this kind of poor design to be excused because you "shouldn't optimize prematurely." – Mike Kantor May 4 at 13:29
13  
Yes, you do. O(n^3) doesn't matter if n=5. It really depends on the combination of algorithm, input and available resources. And that is hard to predict, which is just Knuth's point. See also stackoverflow.com/questions/474714/… . – sleske May 4 at 15:12
show 2 more comments
vote up 57 vote down

Using poorly named variables.

link|flag
1  
Also, it's better to use a bad naming convention and stick with it than it is to not use a naming convention. If you don't like your naming convention, refactor - or just use a new one next time. – Dean May 13 at 2:27
3  
Don't abbreviate. In the age of autocompletion there's no need to write unreadable code just to save a few characters. – JC May 20 at 1:47
show 1 more comment
vote up 15 vote down

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 :)

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

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 ++i is faster than i++, on code full of function calls (i.e. p.c. never there) to multiple abstraction layers, sapping magnitudes of performance, while saving neither cycles nor dev. hours.

link|flag
2  
I remember an urban legend about a team that optimized the wait loop of an old school program. The program still spent the same amount of time in that loop. – jrcs3 May 4 at 1:09
show 3 more comments
vote up 41 vote down

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".

link|flag
5  
Especially in cases where it's "impossible"... – sleske May 4 at 15:08
1  
The problem with beginner programmers is that they still think "impossible" has the real-world meaning of "won't happen", while in practice "impossible" in programming means "will happen only after releasing the product and/or demo-ing it" – Neko Aug 12 at 11:11
vote up 5 vote down

Don't create solutions that are too elaborately coded and overly feature-rich - Keep it Short and Simple

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

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).

link|flag
vote up 2 vote down

In OO languages, not knowing about high cohesion, low coupling. Or not caring about it (which means not constantly measuring).

link|flag
vote up 34 vote down

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.

link|flag
4  
Agree. Don't start by writing the "library" code. Start the project by writing the main() method, inventing nice names for the things you will need, as you write. Once you have written the main() method, just implement all the functions and objects it used and your application will be finished! – joeytwiddle May 3 at 23:36
vote up 7 vote down

Don't assume anything - ask when you don't know, and comment your code when you do.

link|flag
3  
+1 - Too many people try to pretend that they know more than they really do and end up writing or speaking garbage. If I ask a question, simple or not, now I know that I'm smarter than when I woke up (and I find that people love sharing knowledge, and generally don't care that I 'didn't know') – SnOrfus May 4 at 5:08
vote up 0 vote down

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!

link|flag
vote up 2 vote down

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

  • Is documentations missing
  • Could naming of variables, methods, classes be improved to be clearer ?
  • Is it readable ?
  • Are there tests covering all the possible code paths.
  • Are input parameters tested for validness.
  • Are there too many really really long - many screen methods ?
  • Are there any helpers - often they cant be bothered to extract.

Many times there are many vital things missing, the completed polished product will not have these.

link|flag
vote up 4 vote down
  1. Procrastination.

  2. Arrogant.

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

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.

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

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.

link|flag
vote up 42 vote down

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.

link|flag
1  
I agree that it should done in increments, so you do not compound your early error. I like to write chunks of code while the program is running, you get even more feedback than what is available through simple intellisense. I suspect I'll get strong responses why this is bad and promotes sloppy code that isn't well planned. I would disagree & say that if used well, it is another tool in your belt and should not be avoided for idealistic reasons. 20 yrs ago, my boss told me that I over relied on what was at the time an advanced debugger and that it encourages bad code. I think she was nuts. – Chadworthington May 6 at 4:47
show 4 more comments
vote up 4 vote down

Using all kinds of weird control structures to avoid one little goto. Everyone knows that spaghetti code is a bad thing, but one goto does not make spaghetti code. Everyone seems to believe that goto causes cancer and should be removed from the language. Way too often I see code that would be much easier to read and understand if it used one little if(something) goto somewhere; instead of things like do {... if(something) break; ... } while(0);.

link|flag
1  
Everyone thinks one goto won't be harmful, but.... : xkcd.com/292 – kenj0418 May 18 at 19:12
vote up 8 vote down

Putting off writing documentation until the last minute. This is one that bites me no matter how much I try to avoid it.

link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

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