Tagged Questions

8
votes
6answers
327 views

checking invariants in C++

Are there any established patterns for checking class invariants in C++? Ideally, the invariants would be automatically checked at the beginning and at the end of each public member function. As far ...
3
votes
1answer
33 views

Can this statement be regarded as a class invariant?

This is a highly general thought, but let's use C# in this example. Given that I have a disposable class Foo, i.e., it implements IDisposable. Foo has a boolean flag disposed that is false until ...
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 ...