vote up 58 vote down star
49

As we program, we all develop practices and patterns that we use and rely on. However, over time, as our understanding, maturity, and even technology usage changes, we come to realize that some practices that we once thought were great are not (or no longer apply).

An example of a practice I once used quite often, but have in recent years changed, is the use of the Singleton object pattern.

Through my own experience and long debates with colleagues, I've come to realize that singletons are not always desirable - they can make testing more difficult (by inhibiting techniques like mocking) and can create undesirable coupling between parts of a system. Instead, I now use object factories (typically with a IoC container) that hide the nature and existence of singletons from parts of the system that don't care - or need to know. Instead, they rely on a factory (or service locator) to acquire access to such objects.

My questions to the community, in the spirit of self-improvement, are:

  • What programming patterns or practices have you reconsidered recently, and now try to avoid?
  • What did you decide to replace them with?**
flag

47 Answers

prev 1 2
vote up 12 vote down

Utility libraries. I used to carry around an assembly with a variety of helper methods and classes with the theory that I could use them somewhere else someday.

In reality, I just created a huge namespace with a lot of poorly organized bits of functionality.

Now, I just leave them in the project I created them in. In all probability I'm not going to need it, and if I do, I can always refactor them into something reusable later. Sometimes I will flag them with a //TODO for possible extraction into a common assembly.

link|flag
4  
There's a good quote (I can't find the original at the moment) which was something along the lines of "don't even think about creating a generic routine until you've needed to solve the same problem 3 times. – Dave Rigby Jul 6 at 23:34
3  
"Three strikes and you refactor" - Refactoring by Martin Fowler. The Rule of Three, pg 58. – Nick D Jul 7 at 5:00
vote up 7 vote down

I stopped going by the university recommended method of design before implementation. Working in a chaotic and complex system has forced me to change attitude.

Of course I still do code research, especially when I'm about to touch code I've never touched before, but normally I try to focus on as small implementations as possible to get something going first. This is the primary goal. Then gradually refine the logic and let the design just appear by itself. Programming is an iterative process and works very well with an agile approach and with lots of refactoring.

The code will not look at all what you first thought it would look like. Happens every time :)

link|flag
vote up 26 vote down

Waterfall development in general, and in specific, the practice of writing complete and comprehensive functional and design specifications that are somehow expected to be canonical and then expecting an implementation of those to be correct and acceptable. I've seen it replaced with Scrum, and good riddance to it, I say. The simple fact is that the changing nature of customer needs and desires makes any fixed specification effectively useless; the only way to really properly approach the problem is with an iterative approach. Not that Scrum is a silver bullet, of course; I've seen it misused and abused many, many times. But it beats waterfall.

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

Single return points.

I once preferred a single return point for each method, because with that I could ensure that any cleanup needed by the routine was not overlooked.

Since then, I've moved to much smaller routines - so the likelihood of overlooking cleanup is reduced and in fact the need for cleanup is reduced - and find that early returns reduce the apparent complexity (the nesting level) of the code. Artifacts of the single return point - keeping "result" variables around, keeping flag variables, conditional clauses for not-already-done situations - make the code appear much more complex than it actually is, make it harder to read and maintain. Early exits, and smaller methods, are the way to go.

link|flag
2  
I agree, when combined with data types that automatically clean themselves up, such as autoptr, scoped_ptr, CComPtr, etc. – jeffamaphone Jul 7 at 2:54
3  
Code clean up is what try { } finally { } is for – banjollity Jul 7 at 9:23
show 2 more comments
vote up 11 vote down

In C#, using _notation for private members. I now think it's ugly.

I then changed to this.notation for private members, but found I was inconsistent in using it, so I dropped that too.

link|flag
14  
I'm still using _notation and think it's great. – Arnis L. Jul 8 at 9:24
2  
I hate _notation; I use ThisNotation for public members and thisNotation for private members. – Callum Rogers Jul 20 at 16:17
show 2 more comments
vote up 76 vote down
  • Trying to code things perfectly on the first try.
  • Trying to create perfect OO model before coding.
  • Designing everything for flexibility and future improvements.

In one word overengineering.

link|flag
3  
Wait, I always get it right on the first try. :) – jeffamaphone Jul 7 at 2:52
10  
The real money's in getting it subtly wrong the first time and letting it out into the wild. Then, when people are used to the gimped version, swoop in with arrogant showmanship and fix the bug/inefficiency to reap extra glory! ;) – Eric Jul 7 at 7:15
3  
@jeffamaphone - No, only Jon Skeet gets it right the first time. – j0rd4n Jul 7 at 13:03
show 1 more comment
vote up 20 vote down

Obsessive testing. I used to be a rabid proponent of test-first development. For some projects it makes a lot of sense, but I've come to realize that it is not only unfeasible, but rather detrimental to many projects to slavishly adhere to a doctrine of writing unit tests for every single piece of functionality.

Really, slavishly adhering to anything can be detrimental.

link|flag
14  
It works out pretty well for barnacles. – MusiGenesis Jul 7 at 0:55
show 3 more comments
vote up 4 vote down

I would use static's in a lot of methods/classes as it was more concise. When I started writing tests that practice changed very quickly.

link|flag
vote up 33 vote down

The overuse / abuse of #region directives. It's just a little thing, but in C#, I previously would use #region directives all over the place, to organize my classes. For example, I'd group all class properties together in a region.

Now I look back at old code and mostly just get annoyed by them. I don't think it really makes things clearer most of the time, and sometimes they just plain slow you down. So I have now changed my mind and feel that well laid out classes are mostly cleaner without region directives.

link|flag
19  
I hate region's. People on my team use them frivolously. I call them "bad code hiders". – rball Jul 6 at 22:01
8  
They're definitely a code smell. – Frank Schwieterman Jul 6 at 22:08
2  
They are the most phenomenal waste of time. – MusiGenesis Jul 7 at 0:53
3  
I HATE regions. I am currently maintaining code where function is almost 500 lines and to manage it, the smart developer has put chunks of code in 10 to 15 regions. – SolutionYogi Jul 7 at 2:28
3  
@Solution Yogi: I don't think regions are the real problem in your case :-) – Ed Swangren Jul 7 at 2:39
show 6 more comments
vote up 0 vote down

Hungarian notation - It just adds noise. With modern IDEs and well written, tight code it's not necessary, at least not in statically typed languages. Unfortunately, most of the teams I've worked with still insist on using it in some form.

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

Wrapping existing Data Access components, like the Enterprise Library, with a custom layer of helper methods.

  • It doesn't make anybody's life easier
  • Its more code that can have bugs in it
  • A lot of people know how to use the EntLib data access components. No one but the local team knows how to use the in house data access solution
link|flag
vote up 8 vote down

I used to be big into design-by-contract. This meant putting a lot of error checking at the beginning of all my functions. Contracts are still important, from the perspective of separation of concerns, but rather than try to enforce what my code shouldn't do, I try to use unit tests to verify what it does do.

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

I thought it made sense to apply design patterns whenever I recognised them.

Little did I know that I was actually copying styles from foreign programming languages, while the language I was working with allowed for far more elegant or easier solutions.

Using multiple (very) different languages opened my eyes and made me realise that I don't have to mis-apply other people's solutions to problems that aren't mine. Now I shudder when I see the factory pattern applied in a language like Ruby.

link|flag
vote up 19 vote down

This is a small thing, but: Caring about where the braces go (on the same line or next line?), suggested maximum line lengths of code, naming conventions for variables, and other elements of style. I've found that everyone seems to care more about this than I do, so I just go with the flow of whoever I'm working with nowadays.

Edit: The exception to this being, of course, when I'm the one who cares the most (or is the one in a position to set the style for a group). In that case, I do what I want!

(Note that this is not the same as having no consistent style. I think a consistent style in a codebase is very important for readability.)

link|flag
2  
Someone gave this a downvote, but I think its a practical perspective. What is the best code styling? Not important. Look up and down in the same file and duplicate. – Frank Schwieterman Jul 6 at 21:55
9  
The best code styling is whatever the standard is for that shop. – David Thornley Jul 6 at 22:00
3  
@cory: doesn't that mess up the ability of your version control software to show you the difference between versions of the file you're just reformatted? – Steve Melnikoff Jul 7 at 20:29
show 2 more comments
vote up 66 vote down

Hungarian notation (both Forms and Systems). I used to prefix everything. strSomeString or txtFoo. Now I use someString and textBoxFoo. It's far more readable and easier for someone new to come along and pick up. As an added bonus, it's trivial to keep it consistant -- camelCase the control and append a useful/descriptive name. Forms Hungarian has the drawback of not always being consistent and Systems Hungarian doesn't really gain you much. Chunking all your variables together isn't really that useful -- especially with modern IDE's.

link|flag
4  
I do similar except: fooTextBox and string's are just hopefully apparent: numberOfEntries => int, isGreat => bool, etc. – rball Jul 6 at 21:59
2  
@ wuub: I would argue that with proper naming, you shouldn't need to prefix anything. – Nazadus Jul 7 at 1:11
show 5 more comments
vote up 46 vote down

The use of caffine. It once kept me awake and in a glorious programming mood, where the code flew from my fingers with feverous fluidity. Now it does nothing, and if I don't have it I get a headache.

link|flag
31  
You need to drink even more coffee. If that doesn't work, take up smoking. – MusiGenesis Jul 7 at 0:48
4  
What's next ... some illegal drug. – Brad Gilbert Jul 7 at 1:30
5  
Brad: You don't need those when you have Python: xkcd.com/353 – Peter Jul 7 at 2:36
2  
I broke the habit and then picked it up again, several times (This is now my third cycle). There's nothing quite like coding in the cold mornings with a warm mug of coffee! – Matthew Iselin Jul 7 at 9:33
7  
"Looks like I picked the wrong week to quit amphetamines." – ShreevatsaR Jul 11 at 19:03
show 7 more comments
vote up 4 vote down

Like you, I also have embraced IoC patterns in reducing coupling between various components of my apps. It makes maintenance and parts-swapping much simpler, as long as I can keep each component as independent as possible. I'm also utilizing more object-relational frameworks such as NHibernate to simplify database management chores.

In a nutshell, I'm using "mini" frameworks to aid in building software more quickly and efficiently. These mini-frameworks save lots of time, and if done right can make an application super simple to maintain down the road. Plug 'n Play for the win!

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