Tagged Questions

3
votes
3answers
881 views

Are preconditions and postconditions needed in addition to invariants in member functions if doing design by contract?

I understand that in the DbC method, preconditions and postconditions are attached to a function. What I'm wondering is if that applies to member functions as well. For instance, assuming I use ...
2
votes
3answers
396 views

When to add a precondition and when to (only) throw an exception?

I am learning about preconditions and when to use them. I have been told that the precondition @pre fileName must be the name of a valid file does not suit in the following code: /** Creates a new ...