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 class or struct, or can you see valid reasons not to be able to define them?

To me, it feels like that's where you end up when things are just thrown into a class, as if it would be a container, like an exploded data holder.

link|improve this question

could you clarify your question with an example? – LDomagala Feb 3 '09 at 22:55
No, not really... ;-) It was just something that struck me. – Johann Gerell Feb 4 '09 at 1:08
feedback

2 Answers

up vote 4 down vote accepted

Why can't they be readily defined? It does seem like if the person writing the class can't express an invariant for it, it's bad design.

Of course, there are classes that have no invariants. If it is simply intended to hold a couple of unrelated values, like a tuple, with no actual behavior defined, then anything you do with the class is valid, and there are no invariants it needs to maintain. (other than trivial ones like "it'll contain whatever you put in it"

But that's different from "I can't tell you what the invariants are". The latter seems like a serious problem. If you can't define an invariant for a class, you are basically saying that you don't know how it behaves. That makes it rather useless, I'd say.

link|improve this answer
feedback

You don't necessarily need (non-trivial) invariants for a well designed class. It really all depends on what sort of object that the class is meant to represent.

Really, you don't even need to know what an invariant is to design a class well... and a well designed class doesn't even have to follow OO design principles at all... it all depends on what you mean by "well designed".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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