vote up 23 vote down star
36

I've been thinking lately about a few practices that I have kind of adopted. Not things you see listed all the times, but patterns that you've looked back and said "I'm glad I did that", then adopted for yourself.

I'm not really thinking of the ones you hear all the time, like "Refactoring" or any design patterns listed in common books either, but would include specific refactoring patterns that you find success with but don't hear about very often...

flag
show 2 more comments

45 Answers

prev 1 2
vote up 1 vote down

Use meaningful, relevant, human-readable identifiers for variables, methods, parameters and so on. Arbitrary abbreviations make your code much harder to read and understand.

link|flag
vote up 6 vote down

This has to do more with source control than code writing, but it impacts the way I develop my software:

Coherent and self contained source control commits:

Each time I'm about to develop a new feature or fix some bug, I plan the following two or three programming micro-tasks, and make sure each one is fully contained in a source control commit. Do not mix changes that are not related on the same commit.

Of course I'm talking about commits to my local branches. When pushing to the central repository, you should always commit full bug fixes and working features.

link|flag
vote up 10 vote down
  • Writing unit tests (first)
  • One (or zero)-step compile/deploy/test cycle
  • Know your tools (editor, build-system, vcs)
  • Use a VCS
  • KISS (keep it simple)
  • Know how the paradigms of your language (object orientation, functional etc)
link|flag
vote up 6 vote down

In OO languages, complex logic objects should have their API be as small and restricted as possible, and what is there should be documented as a contract. This cuts down on maintenance like you wouldn't believe at first. It makes unit tests for those objects possible. The alternative is objects that expose a smorgasbord of methods to others; they may as well be festooned with billboards shouting "Poke me!", and you'll never know what their state is at any given time.

The corollary to this is that you'll be surprised how often extending an existing class turns out not to be the right choice, in the case of logic objects. (It's significantly more frequent for simpler data objects.) For example, queues are one of the simpler data structures out there, and look a lot like lists - but they are not lists. If the list allows random-access insertion and removal, and sorting, and the queue inherits it, then it will have that too, and risks having other objects use it as a list unknowingly. A queue should contain such a list, perhaps, but not extend it; it should have a totally different API - limited, tested, and well-documented.

link|flag
vote up 19 vote down

In OO languages, keep simpler data objects immutable. This builds upon Paul Tomblin's point about keeping code separate from data. Simple data objects are like bits of hard metal currency passed around the more complex agents in your program, in that they're tangible and definite. They're unlike currency in that thin strings attach them to any object that wants them, for as long as the complex objects want. You wouldn't want someone grinding the "Five Cents" off your nickel and etching "Ten Cents" in its place; nothing should change what your complex objects assume about those bits of data.

link|flag
vote up 4 vote down

Fewer features, fewer configuration options = usable software = maintainable code = used software.

simple. bye.

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

Thread-safe by default. All of my (Java) code is thread-safe unless explicitly documented otherwise. It takes a bit more thinking and sometimes makes the code more complicated, but I go to great length to consider concurrency in every nook and cranny of my (newer) code bases. To this end, the java.util.concurrent package is a blessing.

This pactice, I believe, makes me write better code. Not only do I consider the concurrent failure modes, but I think that simply thinking about the code more leads to fewer mistakes.

link|flag
vote up 15 vote down

Always assume that some poor schmuck will have to maintain your code.

  • keep it simple,
  • easy to understand,
  • segmented in manageable and logical chunks

Remember, you might be the schmuck that has to maintain the code, give yourself a break, take no "shortcuts", dont use "clever" side effects, avoid cryptic variables, no unrelated comments...

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

Code with sources managed under Version Control System!

That way, any refactoring is less an adventure and more a planified effort, with always the possibility to go back or to compare to a stable state.

link|flag
vote up 14 vote down

Never Pass English Language Up To the GUI Low level code should not be producing user visible strings. Instead, they should be passing up objects with codes that can be translated and formatted at the uppermost level. This way, if/when you internationalize, you can do it in one place instead of hundreds. Also, it means that in an environment where the View level is separate from the Model, you can have more than one Viewer using different languages. For instance, your movie theatre management system could be simultaneously viewed by the theatre in France, the regional Network Operations Center in Spain, the studio in Hollywood, and the support site in Rochester NY.

link|flag
vote up 27 vote down

Simplify your design requirements. Trying to bite off too much for version 1.0 has helped kill a few of my own projects, while my successful applications were built with the minimum requirements in mind. Try to figure out the very core functionality you want to accomplish, and save the rest for later. You'll thank yourself when the simple stuff turns out to be not so simple in implementation. Also, by getting your product out faster you'll have a chance to get more feedback from users, which will help decide which "extra" features are worth developing or not.

link|flag
show 2 more comments
vote up 2 vote down

Errr... document code!

Especially the public API, with a clear definition for each function, and the the list of authorized limit values for parameters.

Even though no other documentation ends up being written, that much can save me when I have to use (or to make other use) my code!


Interesting: the recommandation about

"When commenting: Tell me WHY you're doing something, not WHAT you're doing"

picks up a lot of vote, but this more general recommendation does not.

That would be consistent with what I see amongst the developers I work with:
no one document its API... (or at least, not many ;) )
(I am referring to public API comments, not to internal bits of wisdom left within a code which are simple comments, not documentation)

link|flag
vote up 4 vote down

Never pass around raw/native/library objects (specifically collections). I try to avoid passing around ANY raw java objects that I can't extend and aren't part of my "domain".

A class accepting a "List" gives no hint as to what you should pass in, a class expecting a "CarCollection" tells you exactly what to pass in, and the CarCollection class itself can insure it's in a valid state with valid items, a List, even a generic List<Cars> cannot. Finally, you almost always want to add methods, when you use raw objects these usually become crappy utilities distributed throughout your code instead.

This has allowed me a remarkable flexibility when it comes to adding features that weren't planned for in the first place.

link|flag
show 2 more comments
vote up 12 vote down

My best change was using the single responsibility principle. Each class I write only does one thing so it is really easy to troubleshoot problems when they are broken down into small chunks. Sure I have many more classes now but by properly namespacing them and placing them in folders I can easily manage them. SRP encourages code re-use and really enables unit testing (and I think is a key concept for test driven development)

link|flag
vote up 12 vote down

Separate Data from Code. This is one of my biggest driving factors now--my ultimate mantra. I'm not talking about constants you declare in code as scalars, more about identifying patterns where you can extract data and place it in arrays and use them to instantiate collections of objects--eliminating repeated patterns.

This works very well on GUI code, I no longer would ever consider writing "new Button("Click Me")", because "Click Me" is data and should be from an array, as should all the GUI objects and, preferably, most of their locations and handlers.

This pattern allows some remarkable refactorings that are impossible without recognizing what is data and what is code.

link|flag
show 4 more comments
prev 1 2

Your Answer

Get an OpenID
or

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