Design by contract: predict methods needed, discipline yourself and deal with code that comes to min

Posted by fireeyedboy on Stack Overflow See other posts from Stack Overflow or by fireeyedboy
Published on 2010-03-13T02:04:42Z Indexed on 2010/03/13 2:07 UTC
Read the original article Hit count: 505

I like the idea of designing by contract a lot (at least, as far as I understand the principal). I believe it means you define intefaces first before you start implementing actual code, right?

However, from my limited experience (3 OOP years now) I usually can't resist the urge to start coding pretty early, for several reasons:

  1. because my limited experience has shown me I am unable to predict what methods I will be needing in the interface, so I might as well start coding right away.
  2. or because I am simply too impatient to write out the whole interfaces first.
  3. or when I do try it, I still wind up implementing bits of code already, because I fear I might forget this or that imporant bit of code, that springs to mind when I am designing the interfaces.

As you see, especially with the last two points, this leads to a very disorderly way of doing thing. Tasks get mixed up. I should draw a clear line between designing interfaces and actual coding.

If you, unlike me, are a good/disciplined planner, as intended above, how do you:

  1. ...know the majority of methods you will be needing up front so well? Especially if it's components that implement stuff you are not familiar with yet.
  2. ...keep yourself from resisting the urge to start coding right away?
  3. ...deal with code that comes to mind when you are designing the intefaces?

© Stack Overflow or respective owner

Related posts about design-by-contract

Related posts about discipline