Here I put four suggestions, which are so obvious to me, but I don't know why most programmers don't wish to follow:
- Use and apply design patterns; they help better communication between the team as the provide for a common language; not to mention all the other advantages they provide, like extensible code, program to an interface etc.;
- Don't hesitate to write javadoc and comments; they save another developer that looks at your methods and classes much time to know what it does than having to go through the code to realise what an uncommented method does;
- Write test cases; they are mainly for documentation; they show another developer what is the input to a method and what to expect as an output than having to guess each time, especially when there is no javadoc;
- Use this *bloody* CVS/SVN of yours correctly; add a comment each time you do a modification letting others know what you did and why. E.g. another guy just erased (or moved to another eclipse project) some classes in the team I work, and he never writes anything in CVS, letting me in nowhere of knowing why he did that and he 's too busy to ask.
- Gamma E., Helm R., Johnson R., Vlissides J. (1995), Design Patterns – Elements of reusable components, Addison-Wesley.
- Vlissides J. (1998), Pattern Hatching, Addison-Wesley.
- Freeman, E. & Freeman, E. (2004), Head First Design Patterns, O’ Reilly.
- Eckel, B. (2003), Thinking in Patterns with Java, http://mindview.net/Books/TIPatterns/
- JavaCamp, http://javacamp.org/designPattern/index.html
- Wikipedia, http://en.wikipedia.org/wiki/Design_Patterns
Creating junit test cases is also very easy with eclipse, just right click on the class you wish to test and choose New --> JUnit Test Case. Eclipse will ask you of the methods that you wish to test and will create the skeleton for you.
Next time you write a piece of code, think that you don't write it for yourself, but also for others who might review it or continue from where you left or need to modify it. Stop thinking selfishly; it doesn't help.
Heinz Kabutz also gave an interview on becoming a Better Programmer in SUN's website.
1 σχόλιο:
Yes, learning design patterns is essential. In one company, we trained about 100 programmers to speak GoF :-) The results were very positive, with added productivity and better communication. Instead of speaking in low-level terms, we got them to communicate at higher levels.
Your other points are also excellent - we would see much better teams and code if more people just wrote unit tests, comments and actually used source control properly!
Heinz
P.S. I taught my first all-Greek Design Patterns Course this week - long live Greece!
Δημοσίευση σχολίου