vote up 18 vote down star
3

What is the single most important factor for writing maintainable code (language independent)?

flag

35 Answers

prev 1 2
vote up 4 vote down

Good method names

link|flag
vote up 20 vote down

Separation of Concerns (each method does one thing) - this stops Spaghetti code.

EDIT: (In response to Ash's comment) The key to maintainability is being able to quickly figure out what the code is doing and how to make changes in order to accomplish a task.

Having the code separated out so that each task is handled by a method dedicated to it makes this a snap.

For instance, if I want to change the way an elbow is bent on software for a robot, having a method named BendElbow makes it a no-brainer where the change needs to be made.

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

Good abstraction

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

Documentation.

link|flag
vote up 1 vote down

Good comments.

link|flag
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.