3
votes
2answers
71 views
Do you use invariants when you program?
I am taking an intermediate programming course which stresses the use of invariants. I have never used them before and they seem to take up more time to create. Does the software …
0
votes
3answers
149 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, …
5
votes
3answers
270 views
How free can I be in the code in an object invariant?
I'm trying to demonstrate invariants in Code Contracts, and I thought I'd give an example of a sorted list of strings. It maintains an array internally, with spare space for additi …
0
votes
6answers
261 views
Empty constructors and setters on JPA Entites
Hi!
I don't like the requirement on have at least one empty constructor and public setters on JPA entities. While I understand the issue on the EntityManager side, this invalidate …
0
votes
2answers
153 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 o …
6
votes
4answers
491 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 …
3
votes
7answers
366 views
What is an invariant?
The word seems to get used in a number of contexts. The best I can figure is that they mean a variable that can't change. Isn't that what constants/finals (darn you Java!) are for? …
