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

1 2 next
vote up 107 vote down


//Coming out of university, we were taught to ensure we always had an abundance 
//of commenting around our code. But applying that to the real world, made it 
//clear that over-commenting not only has the potential to confuse/complicate 
//things but can make the code hard to follow. Now I spend more time on 
//improving the simplicity and readability of the code and inserting fewer yet 
//relevant comments, instead of spending that time writing overly-descriptive 
//commentaries all throughout the code.


link|flag
20  
Sounds like you commented incorrectly, not too much. Code does not speak for itself. No. It really doesn't. Read the latest NT Insider for a good rant about this. If you think comments will be redundant then you are either wrong or you are doing it wrong. Universities don't teach correct commenting it seems (or bug tracking, or version control... *sigh*). There are way too few comments out there. (and fewer good ones) – Thomas Jul 7 at 11:29
5  
Code Complete has good tips on commenting, and the data to back it up. – Thomas Jul 7 at 11:38
4  
Comments should be used to describe why the code does what it does (if it's not obvious), not what the code does. A possible exception is a crazy bit twiddling / language hack, like Carmack's magic number 0x5f3759df. – Chris Simmons Jul 7 at 18:17
3  
@Thomas: I personally think the problem is that teaching good commenting is not something a university can show students. Almost all programs at schools are one-off things; students don't get to experience looking back at code they wrote a year ago and not understand it at all. Also, lower-level classes teach really simple coding concepts - commenting at this level is almost necessarily tedious, because of what is happening. In other words, it's like trying to teach someone to swim in a wading pool; it's just not the right context for them to understand the motions. – Daniel Lew Jul 7 at 21:53
1  
For multiple line comments I recomend /* and */ :) – yelinna Aug 4 at 4:12
show 5 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 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 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 46 vote down

The "perfect" architecture

I came up with THE architecture a couple of years ago. Pushed myself techically as far as I could so there were 100% loosley coupled layers, extensive use of delegates, and lightweight objects. It was technical heaven.

And it was crap. The techical purity of the architecutre just slowed my dev team down aiming for perfection over results and I almost achieved complete failure.

We now have much simpler less technically perfect architecture and our delivery rate has skyrocketed.

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 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 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 21 vote down

Never crashing.

It seems like such a good idea, doesn't it? Users don't like programs that crash, so let's write programs that don't crash, and users should like the program, right? That's how I started out.

Nowadays, I'm more inclined to think that if it doesn't work, it shouldn't pretend it's working. Fail as soon as you can, with a good error message. If you don't, your program is going to crash even harder just a few instructions later, but with some nondescript null-pointer error that'll take you an hour to debug.

My favorite "don't crash" pattern is this:

public User readUserFromDb(int id){
    User u = null;
    try {
        ResultSet rs = connection.execute("SELECT * FROM user WHERE id = " + id);
        if (rs.moveNext()){
            u = new User();
            u.setFirstName(rs.get("fname"));
            u.setSurname(rs.get("sname"));
            // etc
        }
    } catch (Exception e) {
        log.info(e);
    }
    if (u == null){
        u = new User();
        u.setFirstName("error communicating with database");
        u.setSurname("error communicating with database");
        // etc
    }
    u.setId(id);
    return u;
}

Now, instead of asking your users to copy/paste the error message and sending it to you, you'll have to dive into the logs trying to find the log entry. (And since they entered an invalid user ID, there'll be no log entry.)

link|flag
show 4 more comments
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 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 17 vote down

Commenting out code. I used to think that code was precious and that you can't just delete those beautiful gems that you crafted. I now delete any commented-out code I come across unless there's a TODO or NOTE attached because it's too perilous to leave it in. To wit, I've come across old classes with huge commented-out portions and it really confused me why they were there: were they recently commented out? is this a dev environment change? why does it do this unrelated block?

Seriously consider not commenting out code and just deleting it instead. If you need it, it's still in source control. YAGNI though.

link|flag
4  
I comment out the old code during refactoring, but only until I verify that the replacement code works. Once the new version is fully functional, I delete the old commented lines. – muusbolla Jul 10 at 17:45
2  
I say check in the commented code once, THEN delete it. There are many times when you test various different bits of code, and you don't want to check in broken code... – DisgruntledGoat Jul 31 at 13:33
show 2 more comments
vote up 16 vote down

Perhaps the most important "programming practice" I have since changed my mind about, is the idea that my code is better than everyone else's. This is common for programmers (especially newbies).

link|flag
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 13 vote down

Designing more than I coded. After a while, it turns into analysis paralysis.

link|flag
21  
I occasionaly invoke the phrase "If you find that you are thinking too much, stop and do. If you find that you are doing too much, stop and think." – Neil N Jul 6 at 23:02
vote up 13 vote down

The use of a DataSet to perform business logic. This binds the code too tightly to the database, also the DataSet is usually created from SQL which makes things even more fragile. If the SQL or the Database changes it tends to trickle to everything the DataSet touches.

Performing any business logic inside an object constructor. With inheritance and the ability to create overloaded constructors tend to make maintenance difficult.

link|flag
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 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 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 8 vote down

I first heard about object-oriented programming while reading about Smalltalk in 1984, but I didn't have access to an o-o language until I used the cfront C++ compiler in 1992. I finally got to use Smalltalk in 1995. I had eagerly anticipated o-o technology, and bought into the idea that it would save software development.

Now, I just see o-o as one technique that has some advantages, but it's just one tool in the toolbox. I do most of my work in Python, and I often write standalone functions that are not class members, and I often collect groups of data in tuples or lists where in the past I would have created a class. I still create classes when the data structure is complicated, or I need behavior associated with the data, but I tend to resist it.

I'm actually interested in doing some work in Clojure when I get the time, which doesn't provide o-o facilities, although it can use Java objects if I understand correctly. I'm not ready to say anything like o-o is dead, but personally I'm not the fan I used to be.

link|flag
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 7 vote down

Abbreviating variable/method/table/... Names

I used to do this all of the time, even when working in languages with no enforced limits on lengths of names (well they were probably 255 or something). One of the side-effects were a lot of comments littered throughout the code explaining the (non-standard) abbreviations. And of course, if the names were changed for any reason...

Now I much prefer to call things what they really are, with good descriptive names. including standard abbreviations only. No need to include useless comments, and the code is far more readable and understandable.

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

That anything worthwhile was only coded in one particular language. In my case I believed that C was the best language ever and I never had any reason to code anything in any other language... ever.

I have since come to appreciate many different languages and the benefits/functionality they offer. If I want to code something small - quickly - I would use Python. If I want to work on a large project I would code in C++ or C#. If I want to develop a brain tumour I would code in Perl.

link|flag
vote up 5 vote down

Initializing all class members.

I used to explicitly initialize every class member with something, usually NULL. I have come to realize that this:

  • normally means that every variable is initialized twice before ever being read
  • is silly because in most languages automatically initialize variables to NULL.
  • actually enforces a slight performance hit in most languages
  • can bloat code on larger projects
link|flag
2  
Sometimes the consequences of NOT initializing all class members can really bite you in the a$$ though. – muusbolla Jul 10 at 17:46
show 1 more comment
vote up 5 vote down

When I needed to do some refactoring, I thought it was faster and cleaner to start straightaway and implement the new design, fixing up the connections until they work. Then I realized it's better to do a series of small refactorings to slowly but reliably progress towards the new design.

link|flag
show 1 more comment
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
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 4 vote down

Perhaps the biggest thing that has changed in my coding practices, as well as in others, is the acceptance of outside classes and libraries downloaded from the internet as the basis for behaviors and functionality in applications. In school at the time I attended college we were encouraged to figure out how to make things better via our own code and rely upon the language to solve our problems. With the advances in all aspects of user interface and service/data consumption this is no longer a realistic notion.

There are certain things which will never change in a language, and having a library that wraps this code in a simpler transaction and in fewer lines of code that I have to write is a blessing. Connecting to a database will always be the same. Selecting an element within the DOM will not change. Sending an email via a server-side script will never change. Having to write this time and again wastes time that I could be using to improve my core logic in the application.

link|flag
vote up 3 vote down

Prototyping in the IDE. Like all newbies I have learnt that jumping into the code is a bad idea. Now I tend to abandon silly ideas before even using a keyboard.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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