Tagged Questions
8
votes
6answers
329 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 ...
7
votes
4answers
956 views
How do you validate an object's internal state?
I'm interested in hearing what technique(s) you're using to validate the internal state of an object during an operation that, from it's own point of view, only can fail because of bad internal state ...
6
votes
8answers
438 views
Beginner question - Loop invariants (Specifically Ch.3 of “Accelerated C++”)
as I said, a complete beginner question here. I'm currently working my way through "Accelerated C++" and just came across this in chapter 3:
// invariant:
// we have read count grades so far, and
...
0
votes
4answers
154 views
Enforce use of Getter / Setter within same class (C++)
Is there a way in C++ to enforce the use of getters or setters WITHIN the class?
class C{
private:
int x; // should only be Changed by setX();
private:
setX(int i){
(...) ...
0
votes
2answers
214 views
Are missing invariants for an object always a sign of bad design?
I was just thinking of cases when invariant(s) for mainly classes, but to some extent also structs, cannot be readily defined. Would the lack of invariant(s) be a definitive sign of bad design of the ...